// For licensing and usage information, read docs/release/winui_license.txt //**************************************************************************** #ifndef WINUI_DIRECTINPUT_H #define WINUI_DIRECTINPUT_H #undef WINNT #ifdef DIRECTINPUT_VERSION #undef DIRECTINPUT_VERSION #endif #define DIRECTINPUT_VERSION 0x0700 #include extern BOOL DirectInputInitialize(void); extern void DirectInputClose(void); extern BOOL CALLBACK inputEnumDeviceProc(LPCDIDEVICEINSTANCE pdidi, LPVOID pv); extern HRESULT SetDIDwordProperty(LPDIRECTINPUTDEVICE2 pdev, REFGUID guidProperty, DWORD dwObject, DWORD dwHow, DWORD dwValue); LPDIRECTINPUT GetDirectInput(void); #endif