1 #ifndef _HID_PCH_ 2 #define _HID_PCH_ 3 4 #include <stdarg.h> 5 6 #define WIN32_NO_STATUS 7 #define NTOS_MODE_USER 8 #include <ndk/umtypes.h> 9 10 #define _HIDPI_ 11 #define _HIDPI_NO_FUNCTION_MACROS_ 12 typedef VOID 13 (WINAPI *PINTERFACE_REFERENCE)( 14 PVOID Context); 15 typedef VOID 16 (WINAPI *PINTERFACE_DEREFERENCE)( 17 PVOID Context); 18 19 #include <hidclass.h> 20 21 extern HINSTANCE hDllInstance; 22 extern const GUID HidClassGuid; 23 24 #endif /* _HID_PCH_ */ 25