blob: 7af72dab981c26fde42f84fdf35ebc0d446ebc37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// For licensing and usage information, read docs/winui_license.txt
//****************************************************************************
#ifndef DIRECTINPUT_H
#define DIRECTINPUT_H
#undef WINNT
#ifdef DIRECTINPUT_VERSION
#undef DIRECTINPUT_VERSION
#endif
#define DIRECTINPUT_VERSION 0x0700
#include <dinput.h>
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
|