- Make the NDK compatible with the MSDDK again.
[reactos.git] / reactos / lib / hid / precomp.h
1 #define WIN32_NO_STATUS
2 #include <windows.h>
3
4 #define DDKAPI __stdcall
5 #define _HIDPI_
6 #define _HIDPI_NO_FUNCTION_MACROS_
7 typedef VOID
8 (DDKAPI *PINTERFACE_REFERENCE)(
9 PVOID Context);
10 typedef VOID
11 (DDKAPI *PINTERFACE_DEREFERENCE)(
12 PVOID Context);
13 #include <ntndk.h>
14 #include <ddk/hidusage.h>
15 #include <ddk/hidclass.h>
16 #include <ddk/hidpi.h>
17
18 extern HINSTANCE hDllInstance;
19 extern const GUID HidClassGuid;
20
21 #ifndef UNIMPLEMENTED
22 #define UNIMPLEMENTED \
23 DbgPrint("HID: %s at %s:%d is UNIMPLEMENTED!\n",__FUNCTION__,__FILE__,__LINE__)
24 #endif
25
26 /* EOF */