Bemanitools v5.26 release

This commit is contained in:
icex2
2019-09-27 22:36:50 +02:00
commit cbd7720349
718 changed files with 62731 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef HOOKLIB_SETUPAPI_H
#define HOOKLIB_SETUPAPI_H
#include <windows.h>
#include <setupapi.h>
struct hook_setupapi_data {
GUID device_guid;
const char* device_desc;
const char* device_path;
};
void hook_setupapi_init(const struct hook_setupapi_data* data);
#endif