1 #ifndef __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H
2 #define __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H
7 /* Implementation specification */
8 typedef struct IDirectInputAImpl IDirectInputAImpl;
9 struct IDirectInputAImpl
11 ICOM_VFIELD(IDirectInputA);
14 /* Used to have an unique sequence number for all the events */
18 /* Function called by all devices that Wine supports */
19 typedef struct dinput_device {
21 BOOL (*enum_device)(DWORD dwDevType, DWORD dwFlags, LPCDIDEVICEINSTANCEA lpddi);
22 HRESULT (*create_device)(IDirectInputAImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEA* pdev);
25 extern void dinput_register_device(dinput_device *device) ;
27 #endif /* __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H */