mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 14:44:19 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
21 lines
373 B
C
21 lines
373 B
C
#include <stdarg.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#define NTOS_MODE_USER
|
|
#include <ndk/umtypes.h>
|
|
|
|
#define _HIDPI_
|
|
#define _HIDPI_NO_FUNCTION_MACROS_
|
|
typedef VOID
|
|
(WINAPI *PINTERFACE_REFERENCE)(
|
|
PVOID Context);
|
|
typedef VOID
|
|
(WINAPI *PINTERFACE_DEREFERENCE)(
|
|
PVOID Context);
|
|
|
|
#include <hidclass.h>
|
|
|
|
extern HINSTANCE hDllInstance;
|
|
extern const GUID HidClassGuid;
|
|
|
|
/* EOF */
|