home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / dinputd.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  23KB  |  567 lines

  1. /****************************************************************************
  2.  *
  3.  *  Copyright (C) 1995-1999 Microsoft Corporation.  All Rights Reserved.
  4.  *
  5.  *  File:       dinputd.h
  6.  *  Content:    DirectInput include file for device driver implementors
  7.  *
  8.  ****************************************************************************/
  9. #ifndef __DINPUTD_INCLUDED__
  10. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  11. #define __DINPUTD_INCLUDED__
  12.  
  13. #ifndef DIRECTINPUT_VERSION
  14. #define DIRECTINPUT_VERSION         0x0700
  15. #endif
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21. /****************************************************************************
  22.  *
  23.  *      Interfaces
  24.  *
  25.  ****************************************************************************/
  26.  
  27. #ifndef DIJ_RINGZERO
  28.  
  29. DEFINE_GUID(IID_IDirectInputEffectDriver,   0x02538130,0x898F,0x11D0,0x9A,0xD0,0x00,0xA0,0xC9,0xA0,0x6E,0x35);
  30. DEFINE_GUID(IID_IDirectInputJoyConfig,      0x1DE12AB1,0xC9F5,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
  31. DEFINE_GUID(IID_IDirectInputPIDDriver,      0xEEC6993A,0xB3FD,0x11D2,0xA9,0x16,0x00,0xC0,0x4F,0xB9,0x86,0x38);
  32.  
  33. #endif /* DIJ_RINGZERO */
  34.  
  35.  
  36. /****************************************************************************
  37.  *
  38.  *      IDirectInputEffectDriver
  39.  *
  40.  ****************************************************************************/
  41.  
  42. typedef struct DIOBJECTATTRIBUTES {
  43.     DWORD   dwFlags;
  44.     WORD    wUsagePage;
  45.     WORD    wUsage;
  46. } DIOBJECTATTRIBUTES, *LPDIOBJECTATTRIBUTES;
  47. typedef const DIOBJECTATTRIBUTES *LPCDIOBJECTATTRIBUTES;
  48.  
  49. typedef struct DIFFOBJECTATTRIBUTES {
  50.     DWORD   dwFFMaxForce;
  51.     DWORD   dwFFForceResolution;
  52. } DIFFOBJECTATTRIBUTES, *LPDIFFOBJECTATTRIBUTES;
  53. typedef const DIFFOBJECTATTRIBUTES *LPCDIFFOBJECTATTRIBUTES;
  54.  
  55. typedef struct DIOBJECTCALIBRATION {
  56.     LONG    lMin;
  57.     LONG    lCenter;
  58.     LONG    lMax;
  59. } DIOBJECTCALIBRATION, *LPDIOBJECTCALIBRATION;
  60. typedef const DIOBJECTCALIBRATION *LPCDIOBJECTCALIBRATION;
  61.  
  62. typedef struct DIEFFECTATTRIBUTES {
  63.     DWORD   dwEffectId;
  64.     DWORD   dwEffType;
  65.     DWORD   dwStaticParams;
  66.     DWORD   dwDynamicParams;
  67.     DWORD   dwCoords;
  68. } DIEFFECTATTRIBUTES, *LPDIEFFECTATTRIBUTES;
  69. typedef const DIEFFECTATTRIBUTES *LPCDIEFFECTATTRIBUTES;
  70.  
  71. typedef struct DIFFDEVICEATTRIBUTES {
  72.     DWORD   dwFlags;
  73.     DWORD   dwFFSamplePeriod;
  74.     DWORD   dwFFMinTimeResolution;
  75. } DIFFDEVICEATTRIBUTES, *LPDIFFDEVICEATTRIBUTES;
  76. typedef const DIFFDEVICEATTRIBUTES *LPCDIFFDEVICEATTRIBUTES;
  77.  
  78. typedef struct DIDRIVERVERSIONS {
  79.     DWORD   dwSize;
  80.     DWORD   dwFirmwareRevision;
  81.     DWORD   dwHardwareRevision;
  82.     DWORD   dwFFDriverVersion;
  83. } DIDRIVERVERSIONS, *LPDIDRIVERVERSIONS;
  84. typedef const DIDRIVERVERSIONS *LPCDIDRIVERVERSIONS;
  85.  
  86. typedef struct DIDEVICESTATE {
  87.     DWORD   dwSize;
  88.     DWORD   dwState;
  89.     DWORD   dwLoad;
  90. } DIDEVICESTATE, *LPDIDEVICESTATE;
  91.  
  92. #define DEV_STS_EFFECT_RUNNING  DIEGES_PLAYING
  93.  
  94. #ifndef DIJ_RINGZERO
  95.  
  96. typedef struct DIHIDFFINITINFO {
  97.     DWORD   dwSize;
  98.     LPWSTR  pwszDeviceInterface;
  99.     GUID    GuidInstance;
  100. } DIHIDFFINITINFO, *LPDIHIDFFINITINFO;
  101.  
  102. #undef INTERFACE
  103. #define INTERFACE IDirectInputEffectDriver
  104.  
  105. DECLARE_INTERFACE_(IDirectInputEffectDriver, IUnknown)
  106. {
  107.     /*** IUnknown methods ***/
  108.     STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE;
  109.     STDMETHOD_(ULONG,AddRef)(THIS) PURE;
  110.     STDMETHOD_(ULONG,Release)(THIS) PURE;
  111.  
  112.     /*** IDirectInputEffectDriver methods ***/
  113.     STDMETHOD(DeviceID)(THIS_ DWORD,DWORD,DWORD,DWORD,LPVOID) PURE;
  114.     STDMETHOD(GetVersions)(THIS_ LPDIDRIVERVERSIONS) PURE;
  115.     STDMETHOD(Escape)(THIS_ DWORD,DWORD,LPDIEFFESCAPE) PURE;
  116.     STDMETHOD(SetGain)(THIS_ DWORD,DWORD) PURE;
  117.     STDMETHOD(SendForceFeedbackCommand)(THIS_ DWORD,DWORD) PURE;
  118.     STDMETHOD(GetForceFeedbackState)(THIS_ DWORD,LPDIDEVICESTATE) PURE;
  119.     STDMETHOD(DownloadEffect)(THIS_ DWORD,DWORD,LPDWORD,LPCDIEFFECT,DWORD) PURE;
  120.     STDMETHOD(DestroyEffect)(THIS_ DWORD,DWORD) PURE;
  121.     STDMETHOD(StartEffect)(THIS_ DWORD,DWORD,DWORD,DWORD) PURE;
  122.     STDMETHOD(StopEffect)(THIS_ DWORD,DWORD) PURE;
  123.     STDMETHOD(GetEffectStatus)(THIS_ DWORD,DWORD,LPDWORD) PURE;
  124. };
  125.  
  126. typedef struct IDirectInputEffectDriver *LPDIRECTINPUTEFFECTDRIVER;
  127.  
  128. #if !defined(__cplusplus) || defined(CINTERFACE)
  129. #define IDirectInputEffectDriver_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
  130. #define IDirectInputEffectDriver_AddRef(p) (p)->lpVtbl->AddRef(p)
  131. #define IDirectInputEffectDriver_Release(p) (p)->lpVtbl->Release(p)
  132. #define IDirectInputEffectDriver_DeviceID(p,a,b,c,d,e) (p)->lpVtbl->DeviceID(p,a,b,c,d,e)
  133. #define IDirectInputEffectDriver_GetVersions(p,a) (p)->lpVtbl->GetVersions(p,a)
  134. #define IDirectInputEffectDriver_Escape(p,a,b,c) (p)->lpVtbl->Escape(p,a,b,c)
  135. #define IDirectInputEffectDriver_SetGain(p,a,b) (p)->lpVtbl->SetGain(p,a,b)
  136. #define IDirectInputEffectDriver_SendForceFeedbackCommand(p,a,b) (p)->lpVtbl->SendForceFeedbackCommand(p,a,b)
  137. #define IDirectInputEffectDriver_GetForceFeedbackState(p,a,b) (p)->lpVtbl->GetForceFeedbackState(p,a,b)
  138. #define IDirectInputEffectDriver_DownloadEffect(p,a,b,c,d,e) (p)->lpVtbl->DownloadEffect(p,a,b,c,d,e)
  139. #define IDirectInputEffectDriver_DestroyEffect(p,a,b) (p)->lpVtbl->DestroyEffect(p,a,b)
  140. #define IDirectInputEffectDriver_StartEffect(p,a,b,c,d) (p)->lpVtbl->StartEffect(p,a,b,c,d)
  141. #define IDirectInputEffectDriver_StopEffect(p,a,b) (p)->lpVtbl->StopEffect(p,a,b)
  142. #define IDirectInputEffectDriver_GetEffectStatus(p,a,b,c) (p)->lpVtbl->GetEffectStatus(p,a,b,c)
  143. #else
  144. #define IDirectInputEffectDriver_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
  145. #define IDirectInputEffectDriver_AddRef(p) (p)->AddRef()
  146. #define IDirectInputEffectDriver_Release(p) (p)->Release()
  147. #define IDirectInputEffectDriver_DeviceID(p,a,b,c,d,e) (p)->DeviceID(a,b,c,d,e)
  148. #define IDirectInputEffectDriver_GetVersions(p,a) (p)->GetVersions(a)
  149. #define IDirectInputEffectDriver_Escape(p,a,b,c) (p)->Escape(a,b,c)
  150. #define IDirectInputEffectDriver_SetGain(p,a,b) (p)->SetGain(a,b)
  151. #define IDirectInputEffectDriver_SendForceFeedbackCommand(p,a,b) (p)->SendForceFeedbackCommand(a,b)
  152. #define IDirectInputEffectDriver_GetForceFeedbackState(p,a,b) (p)->GetForceFeedbackState(a,b)
  153. #define IDirectInputEffectDriver_DownloadEffect(p,a,b,c,d,e) (p)->DownloadEffect(a,b,c,d,e)
  154. #define IDirectInputEffectDriver_DestroyEffect(p,a,b) (p)->DestroyEffect(a,b)
  155. #define IDirectInputEffectDriver_StartEffect(p,a,b,c,d) (p)->StartEffect(a,b,c,d)
  156. #define IDirectInputEffectDriver_StopEffect(p,a,b) (p)->StopEffect(a,b)
  157. #define IDirectInputEffectDriver_GetEffectStatus(p,a,b,c) (p)->GetEffectStatus(a,b,c)
  158. #endif
  159.  
  160.  
  161. #endif /* DIJ_RINGZERO */
  162.  
  163.  
  164. /****************************************************************************
  165.  *
  166.  *      IDirectInputJoyConfig
  167.  *
  168.  ****************************************************************************/
  169.  
  170. /****************************************************************************
  171.  *
  172.  *      Definitions copied from the DDK
  173.  *
  174.  ****************************************************************************/
  175.  
  176. #ifndef JOY_HW_NONE
  177.  
  178. /* pre-defined joystick types */
  179. #define JOY_HW_NONE                     0
  180. #define JOY_HW_CUSTOM                   1
  181. #define JOY_HW_2A_2B_GENERIC            2
  182. #define JOY_HW_2A_4B_GENERIC            3
  183. #define JOY_HW_2B_GAMEPAD               4
  184. #define JOY_HW_2B_FLIGHTYOKE            5
  185. #define JOY_HW_2B_FLIGHTYOKETHROTTLE    6
  186. #define JOY_HW_3A_2B_GENERIC            7
  187. #define JOY_HW_3A_4B_GENERIC            8
  188. #define JOY_HW_4B_GAMEPAD               9
  189. #define JOY_HW_4B_FLIGHTYOKE            10
  190. #define JOY_HW_4B_FLIGHTYOKETHROTTLE    11
  191. #define JOY_HW_TWO_2A_2B_WITH_Y         12
  192. #define JOY_HW_LASTENTRY                13
  193.  
  194.  
  195. /* calibration flags */
  196. #define JOY_ISCAL_XY            0x00000001l     /* XY are calibrated */
  197. #define JOY_ISCAL_Z             0x00000002l     /* Z is calibrated */
  198. #define JOY_ISCAL_R             0x00000004l     /* R is calibrated */
  199. #define JOY_ISCAL_U             0x00000008l     /* U is calibrated */
  200. #define JOY_ISCAL_V             0x00000010l     /* V is calibrated */
  201. #define JOY_ISCAL_POV           0x00000020l     /* POV is calibrated */
  202.  
  203. /* point of view constants */
  204. #define JOY_POV_NUMDIRS          4
  205. #define JOY_POVVAL_FORWARD       0
  206. #define JOY_POVVAL_BACKWARD      1
  207. #define JOY_POVVAL_LEFT          2
  208. #define JOY_POVVAL_RIGHT         3
  209.  
  210. /* Specific settings for joystick hardware */
  211. #define JOY_HWS_HASZ            0x00000001l     /* has Z info? */
  212. #define JOY_HWS_HASPOV          0x00000002l     /* point of view hat present */
  213. #define JOY_HWS_POVISBUTTONCOMBOS 0x00000004l   /* pov done through combo of buttons */
  214. #define JOY_HWS_POVISPOLL       0x00000008l     /* pov done through polling */
  215. #define JOY_HWS_ISYOKE          0x00000010l     /* joystick is a flight yoke */
  216. #define JOY_HWS_ISGAMEPAD       0x00000020l     /* joystick is a game pad */
  217. #define JOY_HWS_ISCARCTRL       0x00000040l     /* joystick is a car controller */
  218. /* X defaults to J1 X axis */
  219. #define JOY_HWS_XISJ1Y          0x00000080l     /* X is on J1 Y axis */
  220. #define JOY_HWS_XISJ2X          0x00000100l     /* X is on J2 X axis */
  221. #define JOY_HWS_XISJ2Y          0x00000200l     /* X is on J2 Y axis */
  222. /* Y defaults to J1 Y axis */
  223. #define JOY_HWS_YISJ1X          0x00000400l     /* Y is on J1 X axis */
  224. #define JOY_HWS_YISJ2X          0x00000800l     /* Y is on J2 X axis */
  225. #define JOY_HWS_YISJ2Y          0x00001000l     /* Y is on J2 Y axis */
  226. /* Z defaults to J2 Y axis */
  227. #define JOY_HWS_ZISJ1X          0x00002000l     /* Z is on J1 X axis */
  228. #define JOY_HWS_ZISJ1Y          0x00004000l     /* Z is on J1 Y axis */
  229. #define JOY_HWS_ZISJ2X          0x00008000l     /* Z is on J2 X axis */
  230. /* POV defaults to J2 Y axis, if it is not button based */
  231. #define JOY_HWS_POVISJ1X        0x00010000l     /* pov done through J1 X axis */
  232. #define JOY_HWS_POVISJ1Y        0x00020000l     /* pov done through J1 Y axis */
  233. #define JOY_HWS_POVISJ2X        0x00040000l     /* pov done through J2 X axis */
  234. /* R defaults to J2 X axis */
  235. #define JOY_HWS_HASR            0x00080000l     /* has R (4th axis) info */
  236. #define JOY_HWS_RISJ1X          0x00100000l     /* R done through J1 X axis */
  237. #define JOY_HWS_RISJ1Y          0x00200000l     /* R done through J1 Y axis */
  238. #define JOY_HWS_RISJ2Y          0x00400000l     /* R done through J2 X axis */
  239. /* U & V for future hardware */
  240. #define JOY_HWS_HASU            0x00800000l     /* has U (5th axis) info */
  241. #define JOY_HWS_HASV            0x01000000l     /* has V (6th axis) info */
  242.  
  243. /* Usage settings */
  244. #define JOY_US_HASRUDDER        0x00000001l     /* joystick configured with rudder */
  245. #define JOY_US_PRESENT          0x00000002l     /* is joystick actually present? */
  246. #define JOY_US_ISOEM            0x00000004l     /* joystick is an OEM defined type */
  247.  
  248. /* reserved for future use -> as link to next possible dword */
  249. #define JOY_US_RESERVED         0x80000000l     /* reserved */
  250.  
  251.  
  252. /* Settings for TypeInfo Flags1 */
  253. #define JOYTYPE_ZEROGAMEENUMOEMDATA     0x00000001l /* Zero GameEnum's OEM data field */
  254. #define JOYTYPE_NOAUTODETECTGAMEPORT    0x00000002l /* Device does not support Autodetect gameport*/
  255. #define JOYTYPE_NOHIDDIRECT             0x00000004l /* Do not use HID directly for this device */
  256. #define JOYTYPE_DEFAULTPROPSHEET        0x80000000l /* CPL overrides custom property sheet */
  257.  
  258. /* struct for storing x,y, z, and rudder values */
  259. typedef struct joypos_tag {
  260.     DWORD       dwX;
  261.     DWORD       dwY;
  262.     DWORD       dwZ;
  263.     DWORD       dwR;
  264.     DWORD       dwU;
  265.     DWORD       dwV;
  266. } JOYPOS, FAR *LPJOYPOS;
  267.  
  268. /* struct for storing ranges */
  269. typedef struct joyrange_tag {
  270.     JOYPOS      jpMin;
  271.     JOYPOS      jpMax;
  272.     JOYPOS      jpCenter;
  273. } JOYRANGE,FAR *LPJOYRANGE;
  274.  
  275. /*
  276.  *  dwTimeout - value at which to timeout joystick polling
  277.  *  jrvRanges - range of values app wants returned for axes
  278.  *  jpDeadZone - area around center to be considered
  279.  *               as "dead". specified as a percentage
  280.  *               (0-100). Only X & Y handled by system driver
  281.  */
  282. typedef struct joyreguservalues_tag {
  283.     DWORD       dwTimeOut;
  284.     JOYRANGE    jrvRanges;
  285.     JOYPOS      jpDeadZone;
  286. } JOYREGUSERVALUES, FAR *LPJOYREGUSERVALUES;
  287.  
  288. typedef struct joyreghwsettings_tag {
  289.     DWORD       dwFlags;
  290.     DWORD       dwNumButtons;
  291. } JOYREGHWSETTINGS, FAR *LPJOYHWSETTINGS;
  292.  
  293. /* range of values returned by the hardware (filled in by calibration) */
  294. /*
  295.  *  jrvHardware - values returned by hardware
  296.  *  dwPOVValues - POV values returned by hardware
  297.  *  dwCalFlags  - what has been calibrated
  298.  */
  299. typedef struct joyreghwvalues_tag {
  300.     JOYRANGE    jrvHardware;
  301.     DWORD       dwPOVValues[JOY_POV_NUMDIRS];
  302.     DWORD       dwCalFlags;
  303. } JOYREGHWVALUES, FAR *LPJOYREGHWVALUES;
  304.  
  305. /* hardware configuration */
  306. /*
  307.  *  hws             - hardware settings
  308.  *  dwUsageSettings - usage settings
  309.  *  hwv             - values returned by hardware
  310.  *  dwType          - type of joystick
  311.  *  dwReserved      - reserved for OEM drivers
  312.  */
  313. typedef struct joyreghwconfig_tag {
  314.     JOYREGHWSETTINGS    hws;
  315.     DWORD               dwUsageSettings;
  316.     JOYREGHWVALUES      hwv;
  317.     DWORD               dwType;
  318.     DWORD               dwReserved;
  319. } JOYREGHWCONFIG, FAR *LPJOYREGHWCONFIG;
  320.  
  321. /* joystick calibration info structure */
  322. typedef struct joycalibrate_tag {
  323.     UINT    wXbase;
  324.     UINT    wXdelta;
  325.     UINT    wYbase;
  326.     UINT    wYdelta;
  327.     UINT    wZbase;
  328.     UINT    wZdelta;
  329. } JOYCALIBRATE;
  330. typedef JOYCALIBRATE FAR *LPJOYCALIBRATE;
  331.  
  332. #endif
  333.  
  334. #ifndef DIJ_RINGZERO
  335.  
  336. #define MAX_JOYSTRING 256
  337. typedef BOOL (FAR PASCAL * LPDIJOYTYPECALLBACK)(LPCWSTR, LPVOID);
  338.  
  339. #ifndef MAX_JOYSTICKOEMVXDNAME
  340. #define MAX_JOYSTICKOEMVXDNAME 260
  341. #endif
  342.  
  343. #define DITC_REGHWSETTINGS          0x00000001
  344. #define DITC_CLSIDCONFIG            0x00000002
  345. #define DITC_DISPLAYNAME            0x00000004
  346. #define DITC_CALLOUT                0x00000008
  347. #define DITC_HARDWAREID             0x00000010
  348. #define DITC_FLAGS1                 0x00000020
  349.  
  350.  
  351. /* This structure is defined for DirectX 5.0 compatibility */
  352.  
  353. typedef struct DIJOYTYPEINFO_DX5 {
  354.     DWORD dwSize;
  355.     JOYREGHWSETTINGS hws;
  356.     CLSID clsidConfig;
  357.     WCHAR wszDisplayName[MAX_JOYSTRING];
  358.     WCHAR wszCallout[MAX_JOYSTICKOEMVXDNAME];
  359. } DIJOYTYPEINFO_DX5, *LPDIJOYTYPEINFO_DX5;
  360. typedef const DIJOYTYPEINFO_DX5 *LPCDIJOYTYPEINFO_DX5;
  361.  
  362. typedef struct DIJOYTYPEINFO {
  363.     DWORD dwSize;
  364.     JOYREGHWSETTINGS hws;
  365.     CLSID clsidConfig;
  366.     WCHAR wszDisplayName[MAX_JOYSTRING];
  367.     WCHAR wszCallout[MAX_JOYSTICKOEMVXDNAME];
  368. #if(DIRECTINPUT_VERSION >= 0x05b2)
  369.     WCHAR wszHardwareId[MAX_JOYSTRING];
  370.     DWORD dwFlags1;
  371. #endif /* DIRECTINPUT_VERSION >= 0x05b2 */
  372. } DIJOYTYPEINFO, *LPDIJOYTYPEINFO;
  373. typedef const DIJOYTYPEINFO *LPCDIJOYTYPEINFO;
  374.  
  375. #define DIJC_GUIDINSTANCE           0x00000001
  376. #define DIJC_REGHWCONFIGTYPE        0x00000002
  377. #define DIJC_GAIN                   0x00000004
  378. #define DIJC_CALLOUT                0x00000008
  379. #define DIJC_WDMGAMEPORT            0x00000010
  380.  
  381. /* This structure is defined for DirectX 5.0 compatibility */
  382.  
  383. typedef struct DIJOYCONFIG_DX5 {
  384.     DWORD dwSize;
  385.     GUID guidInstance;
  386.     JOYREGHWCONFIG hwc;
  387.     DWORD dwGain;
  388.     WCHAR wszType[MAX_JOYSTRING];
  389.     WCHAR wszCallout[MAX_JOYSTRING];
  390. } DIJOYCONFIG_DX5, *LPDIJOYCONFIG_DX5;
  391. typedef const DIJOYCONFIG_DX5 *LPCDIJOYCONFIG_DX5;
  392.  
  393. typedef struct DIJOYCONFIG {
  394.     DWORD dwSize;
  395.     GUID guidInstance;
  396.     JOYREGHWCONFIG hwc;
  397.     DWORD dwGain;
  398.     WCHAR wszType[MAX_JOYSTRING];
  399.     WCHAR wszCallout[MAX_JOYSTRING];
  400. #if(DIRECTINPUT_VERSION >= 0x05b2)
  401.     GUID  guidGameport;
  402. #endif /* DIRECTINPUT_VERSION >= 0x05b2 */
  403.     } DIJOYCONFIG, *LPDIJOYCONFIG;
  404. typedef const DIJOYCONFIG *LPCDIJOYCONFIG;
  405.  
  406.  
  407. #define DIJU_USERVALUES             0x00000001
  408. #define DIJU_GLOBALDRIVER           0x00000002
  409. #define DIJU_GAMEPORTEMULATOR       0x00000004
  410.  
  411. typedef struct DIJOYUSERVALUES {
  412.     DWORD dwSize;
  413.     JOYREGUSERVALUES ruv;
  414.     WCHAR wszGlobalDriver[MAX_JOYSTRING];
  415.     WCHAR wszGameportEmulator[MAX_JOYSTRING];
  416. } DIJOYUSERVALUES, *LPDIJOYUSERVALUES;
  417. typedef const DIJOYUSERVALUES *LPCDIJOYUSERVALUES;
  418.  
  419. DEFINE_GUID(GUID_KeyboardClass, 0x4D36E96B,0xE325,0x11CE,0xBF,0xC1,0x08,0x00,0x2B,0xE1,0x03,0x18);
  420. DEFINE_GUID(GUID_MediaClass,    0x4D36E96C,0xE325,0x11CE,0xBF,0xC1,0x08,0x00,0x2B,0xE1,0x03,0x18);
  421. DEFINE_GUID(GUID_MouseClass,    0x4D36E96F,0xE325,0x11CE,0xBF,0xC1,0x08,0x00,0x2B,0xE1,0x03,0x18);
  422. DEFINE_GUID(GUID_HIDClass,      0x745A17A0,0x74D3,0x11D0,0xB6,0xFE,0x00,0xA0,0xC9,0x0F,0x57,0xDA);
  423.  
  424. #undef INTERFACE
  425. #define INTERFACE IDirectInputJoyConfig
  426.  
  427. DECLARE_INTERFACE_(IDirectInputJoyConfig, IUnknown)
  428. {
  429.     /*** IUnknown methods ***/
  430.     STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE;
  431.     STDMETHOD_(ULONG,AddRef)(THIS) PURE;
  432.     STDMETHOD_(ULONG,Release)(THIS) PURE;
  433.  
  434.     /*** IDirectInputJoyConfig methods ***/
  435.     STDMETHOD(Acquire)(THIS) PURE;
  436.     STDMETHOD(Unacquire)(THIS) PURE;
  437.     STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE;
  438.     STDMETHOD(SendNotify)(THIS) PURE;
  439.     STDMETHOD(EnumTypes)(THIS_ LPDIJOYTYPECALLBACK,LPVOID) PURE;
  440.     STDMETHOD(GetTypeInfo)(THIS_ LPCWSTR,LPDIJOYTYPEINFO,DWORD) PURE;
  441.     STDMETHOD(SetTypeInfo)(THIS_ LPCWSTR,LPCDIJOYTYPEINFO,DWORD) PURE;
  442.     STDMETHOD(DeleteType)(THIS_ LPCWSTR) PURE;
  443.     STDMETHOD(GetConfig)(THIS_ UINT,LPDIJOYCONFIG,DWORD) PURE;
  444.     STDMETHOD(SetConfig)(THIS_ UINT,LPCDIJOYCONFIG,DWORD) PURE;
  445.     STDMETHOD(DeleteConfig)(THIS_ UINT) PURE;
  446.     STDMETHOD(GetUserValues)(THIS_ LPDIJOYUSERVALUES,DWORD) PURE;
  447.     STDMETHOD(SetUserValues)(THIS_ LPCDIJOYUSERVALUES,DWORD) PURE;
  448.     STDMETHOD(AddNewHardware)(THIS_ HWND,REFGUID) PURE;
  449.     STDMETHOD(OpenTypeKey)(THIS_ LPCWSTR,DWORD,PHKEY) PURE;
  450.     STDMETHOD(OpenConfigKey)(THIS_ UINT,DWORD,PHKEY) PURE;
  451. };
  452.  
  453. typedef struct IDirectInputJoyConfig *LPDIRECTINPUTJOYCONFIG;
  454.  
  455. #if !defined(__cplusplus) || defined(CINTERFACE)
  456. #define IDirectInputJoyConfig_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
  457. #define IDirectInputJoyConfig_AddRef(p) (p)->lpVtbl->AddRef(p)
  458. #define IDirectInputJoyConfig_Release(p) (p)->lpVtbl->Release(p)
  459. #define IDirectInputJoyConfig_Acquire(p) (p)->lpVtbl->Acquire(p)
  460. #define IDirectInputJoyConfig_Unacquire(p) (p)->lpVtbl->Unacquire(p)
  461. #define IDirectInputJoyConfig_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b)
  462. #define IDirectInputJoyConfig_SendNotify(p) (p)->lpVtbl->SendNotify(p)
  463. #define IDirectInputJoyConfig_EnumTypes(p,a,b) (p)->lpVtbl->EnumTypes(p,a,b)
  464. #define IDirectInputJoyConfig_GetTypeInfo(p,a,b,c) (p)->lpVtbl->GetTypeInfo(p,a,b,c)
  465. #define IDirectInputJoyConfig_SetTypeInfo(p,a,b,c) (p)->lpVtbl->SetTypeInfo(p,a,b,c)
  466. #define IDirectInputJoyConfig_DeleteType(p,a) (p)->lpVtbl->DeleteType(p,a)
  467. #define IDirectInputJoyConfig_GetConfig(p,a,b,c) (p)->lpVtbl->GetConfig(p,a,b,c)
  468. #define IDirectInputJoyConfig_SetConfig(p,a,b,c) (p)->lpVtbl->SetConfig(p,a,b,c)
  469. #define IDirectInputJoyConfig_DeleteConfig(p,a) (p)->lpVtbl->DeleteConfig(p,a)
  470. #define IDirectInputJoyConfig_GetUserValues(p,a,b) (p)->lpVtbl->GetUserValues(p,a,b)
  471. #define IDirectInputJoyConfig_SetUserValues(p,a,b) (p)->lpVtbl->SetUserValues(p,a,b)
  472. #define IDirectInputJoyConfig_AddNewHardware(p,a,b) (p)->lpVtbl->AddNewHardware(p,a,b)
  473. #define IDirectInputJoyConfig_OpenTypeKey(p,a,b,c) (p)->lpVtbl->OpenTypeKey(p,a,b,c)
  474. #define IDirectInputJoyConfig_OpenConfigKey(p,a,b,c) (p)->lpVtbl->OpenConfigKey(p,a,b,c)
  475. #else
  476. #define IDirectInputJoyConfig_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
  477. #define IDirectInputJoyConfig_AddRef(p) (p)->AddRef()
  478. #define IDirectInputJoyConfig_Release(p) (p)->Release()
  479. #define IDirectInputJoyConfig_Acquire(p) (p)->Acquire()
  480. #define IDirectInputJoyConfig_Unacquire(p) (p)->Unacquire()
  481. #define IDirectInputJoyConfig_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b)
  482. #define IDirectInputJoyConfig_SendNotify(p) (p)->SendNotify()
  483. #define IDirectInputJoyConfig_EnumTypes(p,a,b) (p)->EnumTypes(a,b)
  484. #define IDirectInputJoyConfig_GetTypeInfo(p,a,b,c) (p)->GetTypeInfo(a,b,c)
  485. #define IDirectInputJoyConfig_SetTypeInfo(p,a,b,c) (p)->SetTypeInfo(a,b,c)
  486. #define IDirectInputJoyConfig_DeleteType(p,a) (p)->DeleteType(a)
  487. #define IDirectInputJoyConfig_GetConfig(p,a,b,c) (p)->GetConfig(a,b,c)
  488. #define IDirectInputJoyConfig_SetConfig(p,a,b,c) (p)->SetConfig(a,b,c)
  489. #define IDirectInputJoyConfig_DeleteConfig(p,a) (p)->DeleteConfig(a)
  490. #define IDirectInputJoyConfig_GetUserValues(p,a,b) (p)->GetUserValues(a,b)
  491. #define IDirectInputJoyConfig_SetUserValues(p,a,b) (p)->SetUserValues(a,b)
  492. #define IDirectInputJoyConfig_AddNewHardware(p,a,b) (p)->AddNewHardware(a,b)
  493. #define IDirectInputJoyConfig_OpenTypeKey(p,a,b,c) (p)->OpenTypeKey(a,b,c)
  494. #define IDirectInputJoyConfig_OpenConfigKey(p,a,b,c) (p)->OpenConfigKey(a,b,c)
  495. #endif
  496.  
  497. #endif /* DIJ_RINGZERO */
  498.  
  499. /****************************************************************************
  500.  *
  501.  *  Return Codes
  502.  *
  503.  ****************************************************************************/
  504.  
  505. #define DIERR_NOMOREITEMS               \
  506.     MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_NO_MORE_ITEMS)
  507.  
  508. /*
  509.  *  Device driver-specific codes.
  510.  */
  511. #define DIERR_DRIVERFIRST               0x80040300L
  512. #define DIERR_DRIVERLAST                0x800403FFL
  513.  
  514. /*
  515.  *  Device installer errors.
  516.  */
  517.  
  518. /*
  519.  *  Registry entry or DLL for class installer invalid
  520.  *  or class installer not found.
  521.  */
  522. #define DIERR_INVALIDCLASSINSTALLER     0x80040400L
  523.  
  524. /*
  525.  *  The user cancelled the install operation.
  526.  */
  527. #define DIERR_CANCELLED                 0x80040401L
  528.  
  529. /*
  530.  *  The INF file for the selected device could not be
  531.  *  found or is invalid or is damaged.
  532.  */
  533. #define DIERR_BADINF                    0x80040402L
  534.  
  535. /*
  536.  * Device-specific errors for USB/PID force feedback devices. 
  537.  */
  538.  
  539. /*
  540.  *  The requested usage was not found.
  541.  */
  542. #define  DIERR_PID_USAGENOTFOUND    DIERR_DRIVERFIRST + 1
  543.  
  544. /*
  545.  *  The parameter block couldn't be    downloaded to the device.
  546.  */
  547. #define DIERR_PID_BLOCKLOADERROR    DIERR_DRIVERFIRST + 2
  548.  
  549. /*
  550.  *  PID initialization failed.
  551.  */
  552. #define DIERR_PID_NOTINITIALIZED    DIERR_DRIVERFIRST + 3
  553.  
  554. /*
  555.  *  The provided values couldn't be scaled.
  556.  */
  557. #define DIERR_PID_INVALIDSCALING    DIERR_DRIVERFIRST + 4
  558.  
  559.  
  560.  
  561. #ifdef __cplusplus
  562. };
  563. #endif
  564.  
  565. #pragma option pop /*P_O_Pop*/
  566. #endif  /* __DINPUTD_INCLUDED__ */
  567.