spicetools/hooks/cfgmgr32hook.h

16 lines
299 B
C
Raw Permalink Normal View History

2024-08-28 15:10:34 +00:00
#pragma once
#include <string>
#include <windows.h>
struct CFGMGR32_HOOK_SETTING {
DWORD device_instance;
DWORD parent_instance;
std::string device_node_id;
std::string device_id;
};
void cfgmgr32hook_init(HINSTANCE module);
void cfgmgr32hook_add(CFGMGR32_HOOK_SETTING setting);