mirror of
https://github.com/Print3M/Anti-VM
synced 2026-06-21 16:41:58 +00:00
8 lines
200 B
C++
8 lines
200 B
C++
#pragma once
|
|
#include <string>
|
|
#include <Wbemidl.h>
|
|
#include <functional>
|
|
|
|
namespace wmi {
|
|
int get_wmi(std::string wql_query, std::function<void(IWbemClassObject*, VARIANT*)> get_property);
|
|
}; |