3 * Copyright 1998 Marcus Meissner
5 * Additions (mouse support) Copyright 1998 Lionel Ulmer
9 * - Tomb Raider 2 Demo:
10 * Playable using keyboard only.
11 * - WingCommander Prophecy Demo:
12 * Doesn't get Input Focus.
14 * - Fallout : works great in X and DGA mode
16 * FIXME: The keyboard handling needs to (and will) be merged into keyboard.c
17 * (The current implementation is currently only a proof of concept and
25 #include <sys/signal.h>
32 #include "interfaces.h"
40 extern BYTE InputKeyStateTable[256];
41 extern int min_keycode, max_keycode;
42 extern WORD keyc2vkey[256];
44 static IDirectInputA_VTable ddiavt;
45 static IDirectInputDeviceA_VTable SysKeyboardAvt;
46 static IDirectInputDeviceA_VTable SysMouseAvt;
48 /* UIDs for Wine "drivers".
49 When enumerating each device supporting DInput, they have two UIDs :
52 static GUID DInput_Wine_Mouse_GUID = { /* 9e573ed8-7734-11d2-8d4a-23903fb6bdf7 */
56 {0x8d, 0x4a, 0x23, 0x90, 0x3f, 0xb6, 0xbd, 0xf7}
58 static GUID DInput_Wine_Keyboard_GUID = { /* 0ab8648a-7735-11d2-8c73-71df54a96441 */
62 {0x8c, 0x73, 0x71, 0xdf, 0x54, 0xa9, 0x64, 0x41}
65 /******************************************************************************
66 * DirectInputCreate32A
68 HRESULT WINAPI DirectInputCreate32A(HINSTANCE32 hinst, DWORD dwVersion, LPDIRECTINPUT32A *ppDI, LPUNKNOWN punkOuter) {
69 TRACE(dinput, "(0x%08lx,%04lx,%p,%p)\n",
70 (DWORD)hinst,dwVersion,ppDI,punkOuter
72 (*ppDI) = (LPDIRECTINPUT32A)HeapAlloc(GetProcessHeap(),0,sizeof(IDirectInput32A));
74 (*ppDI)->lpvtbl = &ddiavt;
77 /******************************************************************************
78 * IDirectInputA_EnumDevices
80 static HRESULT WINAPI IDirectInputA_EnumDevices(
81 LPDIRECTINPUT32A this, DWORD dwDevType, LPDIENUMDEVICESCALLBACK32A lpCallback,
82 LPVOID pvRef, DWORD dwFlags
84 DIDEVICEINSTANCE32A devInstance;
87 TRACE(dinput, "(this=%p,0x%04lx,%p,%p,%04lx)\n", this, dwDevType, lpCallback, pvRef, dwFlags);
89 devInstance.dwSize = sizeof(DIDEVICEINSTANCE32A);
91 if ((dwDevType == 0) || (dwDevType == DIDEVTYPE_KEYBOARD)) {
93 devInstance.guidInstance = GUID_SysKeyboard; /* DInput's GUID */
94 devInstance.guidProduct = DInput_Wine_Keyboard_GUID; /* Vendor's GUID */
95 devInstance.dwDevType = DIDEVTYPE_KEYBOARD | (DIDEVTYPEKEYBOARD_UNKNOWN << 8);
96 strcpy(devInstance.tszInstanceName, "Keyboard");
97 strcpy(devInstance.tszProductName, "Wine Keyboard");
99 ret = lpCallback(&devInstance, pvRef);
100 TRACE(dinput, "Keyboard registered\n");
102 if (ret == DIENUM_STOP)
106 if ((dwDevType == 0) || (dwDevType == DIDEVTYPE_KEYBOARD)) {
108 devInstance.guidInstance = GUID_SysMouse; /* DInput's GUID */
109 devInstance.guidProduct = DInput_Wine_Mouse_GUID; /* Vendor's GUID */
110 devInstance.dwDevType = DIDEVTYPE_MOUSE | (DIDEVTYPEMOUSE_UNKNOWN << 8);
111 strcpy(devInstance.tszInstanceName, "Mouse");
112 strcpy(devInstance.tszProductName, "Wine Mouse");
114 ret = lpCallback(&devInstance, pvRef);
115 TRACE(dinput, "Mouse registered\n");
118 /* Should also do joystick enumerations.... */
123 static ULONG WINAPI IDirectInputA_AddRef(LPDIRECTINPUT32A this) {
124 return ++(this->ref);
127 static ULONG WINAPI IDirectInputA_Release(LPDIRECTINPUT32A this) {
128 if (!(--this->ref)) {
129 HeapFree(GetProcessHeap(),0,this);
135 static HRESULT WINAPI IDirectInputA_CreateDevice(
136 LPDIRECTINPUT32A this,REFGUID rguid,LPDIRECTINPUTDEVICE32A* pdev,
141 WINE_StringFromCLSID(rguid,xbuf);
142 FIXME(dinput,"(this=%p,%s,%p,%p): stub\n",this,xbuf,pdev,punk);
143 if ((!memcmp(&GUID_SysKeyboard,rguid,sizeof(GUID_SysKeyboard))) || /* Generic Keyboard */
144 (!memcmp(&DInput_Wine_Keyboard_GUID,rguid,sizeof(GUID_SysKeyboard)))) { /* Wine Keyboard */
145 *pdev = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(SysKeyboard32A));
147 (*pdev)->lpvtbl = &SysKeyboardAvt;
148 memcpy(&((*pdev)->guid),rguid,sizeof(*rguid));
149 memset(((LPSYSKEYBOARD32A)(*pdev))->keystate,0,256);
152 if ((!memcmp(&GUID_SysMouse,rguid,sizeof(GUID_SysMouse))) || /* Generic Mouse */
153 (!memcmp(&DInput_Wine_Mouse_GUID,rguid,sizeof(GUID_SysKeyboard)))) { /* Wine Mouse */
154 *pdev = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(SysMouse32A));
156 (*pdev)->lpvtbl = &SysMouseAvt;
157 memcpy(&((*pdev)->guid),rguid,sizeof(*rguid));
163 static HRESULT WINAPI IDirectInputA_QueryInterface(
164 LPDIRECTINPUT32A this,REFIID riid,LPVOID *ppobj
168 WINE_StringFromCLSID(riid,xbuf);
169 TRACE(dinput,"(this=%p,%s,%p)\n",this,xbuf,ppobj);
170 if (!memcmp(&IID_IUnknown,riid,sizeof(*riid))) {
171 this->lpvtbl->fnAddRef(this);
175 if (!memcmp(&IID_IDirectInputA,riid,sizeof(*riid))) {
176 this->lpvtbl->fnAddRef(this);
183 static HRESULT WINAPI IDirectInputA_Initialize(
184 LPDIRECTINPUT32A this,HINSTANCE32 hinst,DWORD x
186 return DIERR_ALREADYINITIALIZED;
189 static IDirectInputA_VTable ddiavt= {
190 IDirectInputA_QueryInterface,
191 IDirectInputA_AddRef,
192 IDirectInputA_Release,
193 IDirectInputA_CreateDevice,
194 IDirectInputA_EnumDevices,
197 IDirectInputA_Initialize
200 /******************************************************************************
201 * IDirectInputDeviceA
203 static HRESULT WINAPI IDirectInputDeviceA_SetDataFormat(
204 LPDIRECTINPUTDEVICE32A this,LPCDIDATAFORMAT df
208 TRACE(dinput,"(this=%p,%p)\n",this,df);
210 TRACE(dinput,"df.dwSize=%ld\n",df->dwSize);
211 TRACE(dinput,"(df.dwObjsize=%ld)\n",df->dwObjSize);
212 TRACE(dinput,"(df.dwFlags=0x%08lx)\n",df->dwFlags);
213 TRACE(dinput,"(df.dwDataSize=%ld)\n",df->dwDataSize);
214 TRACE(dinput,"(df.dwNumObjs=%ld)\n",df->dwNumObjs);
216 for (i=0;i<df->dwNumObjs;i++) {
219 if (df->rgodf[i].pguid)
220 WINE_StringFromCLSID(df->rgodf[i].pguid,xbuf);
222 strcpy(xbuf,"<no guid>");
223 TRACE(dinput,"df.rgodf[%d].guid %s\n",i,xbuf);
224 TRACE(dinput,"df.rgodf[%d].dwOfs %ld\n",i,df->rgodf[i].dwOfs);
225 TRACE(dinput,"dwType 0x%02lx,dwInstance %ld\n",DIDFT_GETTYPE(df->rgodf[i].dwType),DIDFT_GETINSTANCE(df->rgodf[i].dwType));
226 TRACE(dinput,"df.rgodf[%d].dwFlags 0x%08lx\n",i,df->rgodf[i].dwFlags);
232 static HRESULT WINAPI IDirectInputDeviceA_SetCooperativeLevel(
233 LPDIRECTINPUTDEVICE32A this,HWND32 hwnd,DWORD dwflags
235 FIXME(dinput,"(this=%p,0x%08lx,0x%08lx): stub\n",this,(DWORD)hwnd,dwflags);
239 static HRESULT WINAPI IDirectInputDeviceA_SetProperty(
240 LPDIRECTINPUTDEVICE32A this,REFGUID rguid,LPCDIPROPHEADER ph
245 WINE_StringFromCLSID(rguid,xbuf);
247 sprintf(xbuf,"<special guid %ld>",(DWORD)rguid);
248 TRACE(dinput,"(this=%p,%s,%p)\n",this,xbuf,ph);
249 if (!HIWORD(rguid)) {
250 switch ((DWORD)rguid) {
251 case DIPROP_BUFFERSIZE: {
252 LPCDIPROPDWORD pd = (LPCDIPROPDWORD)ph;
254 TRACE(dinput,"buffersize = %ld\n",pd->dwData);
258 WARN(dinput,"Unknown type %ld\n",(DWORD)rguid);
265 static HRESULT WINAPI IDirectInputDeviceA_SetEventNotification(
266 LPDIRECTINPUTDEVICE32A this,HANDLE32 hnd
268 FIXME(dinput,"(this=%p,0x%08lx): stub\n",this,(DWORD)hnd);
272 static HRESULT WINAPI IDirectInputDeviceA_GetDeviceData(
273 LPDIRECTINPUTDEVICE32A this,DWORD dodsize,LPDIDEVICEOBJECTDATA dod,
274 LPDWORD entries,DWORD flags
276 TRACE(dinput,"IDirectInputDeviceA(%p)->GetDeviceData(%ld,%p,%p(0x%08lx),0x%08lx)\n",
277 this,dodsize,dod,entries,*entries,flags);
282 static HRESULT WINAPI IDirectInputDeviceA_Acquire(LPDIRECTINPUTDEVICE32A this) {
283 TRACE(dinput,"(this=%p): stub\n",this);
287 static HRESULT WINAPI IDirectInputDeviceA_Unacquire(LPDIRECTINPUTDEVICE32A this) {
288 TRACE(dinput,"(this=%p): stub\n",this);
292 static ULONG WINAPI IDirectInputDeviceA_Release(LPDIRECTINPUTDEVICE32A this) {
296 HeapFree(GetProcessHeap(),0,this);
300 static HRESULT WINAPI SysKeyboardA_SetProperty(
301 LPDIRECTINPUTDEVICE32A this,REFGUID rguid,LPCDIPROPHEADER ph
306 WINE_StringFromCLSID(rguid,xbuf);
308 sprintf(xbuf,"<special guid %ld>",(DWORD)rguid);
309 TRACE(dinput,"(this=%p,%s,%p)\n",this,xbuf,ph);
310 TRACE(dinput,"(size=%ld,headersize=%ld,obj=%ld,how=%ld\n",
311 ph->dwSize,ph->dwHeaderSize,ph->dwObj,ph->dwHow);
312 if (!HIWORD(rguid)) {
313 switch ((DWORD)rguid) {
314 case DIPROP_BUFFERSIZE: {
315 LPCDIPROPDWORD pd = (LPCDIPROPDWORD)ph;
317 TRACE(dinput,"(buffersize=%ld)\n",pd->dwData);
321 WARN(dinput,"Unknown type %ld\n",(DWORD)rguid);
328 static HRESULT WINAPI SysKeyboardA_GetDeviceState(
329 LPDIRECTINPUTDEVICE32A this,DWORD len,LPVOID ptr
335 for (keyc=min_keycode;keyc<max_keycode;keyc++)
337 /* X keycode to virtual key */
338 vkey = keyc2vkey[keyc] & 0xFF;
339 /* The windows scancode is keyc-min_keycode */
340 if (InputKeyStateTable[vkey]&0x80) {
341 ((LPBYTE)ptr)[keyc-min_keycode]=0x80;
342 ((LPBYTE)ptr)[(keyc-min_keycode)|0x80]=0x80;
347 WARN(dinput,"whoops, SysKeyboardA_GetDeviceState got len %ld?\n",len);
351 static HRESULT WINAPI SysKeyboardA_GetDeviceData(
352 LPDIRECTINPUTDEVICE32A this,DWORD dodsize,LPDIDEVICEOBJECTDATA dod,
353 LPDWORD entries,DWORD flags
355 int keyc,n,vkey,xentries;
356 LPSYSKEYBOARD32A kthis = (LPSYSKEYBOARD32A)this;
358 TRACE(dinput,"(this=%p,%ld,%p,%p(%ld)),0x%08lx)\n",
359 this,dodsize,dod,entries,entries?*entries:0,flags);
360 EVENT_WaitNetEvent(FALSE,TRUE);
368 for (keyc=min_keycode;(keyc<max_keycode) && (n<*entries);keyc++)
370 /* X keycode to virtual key */
371 vkey = keyc2vkey[keyc] & 0xFF;
372 if (kthis->keystate[vkey] == (InputKeyStateTable[vkey]&0x80))
376 dod[n].dwOfs = keyc-min_keycode; /* scancode */
377 dod[n].dwData = InputKeyStateTable[vkey]&0x80;
378 dod[n].dwTimeStamp = 0; /* umm */
379 dod[n].dwSequence = 0; /* umm */
382 if (!(flags & DIGDD_PEEK))
383 kthis->keystate[vkey] = InputKeyStateTable[vkey]&0x80;
387 if (n) fprintf(stderr,"%d entries\n",n);
392 static HRESULT WINAPI SysKeyboardA_Acquire(LPDIRECTINPUTDEVICE32A this) {
393 TRACE(dinput,"(this=%p): stub\n",this);
397 static HRESULT WINAPI SysKeyboardA_Unacquire(LPDIRECTINPUTDEVICE32A this) {
398 TRACE(dinput,"(this=%p): stub\n",this);
402 static HRESULT WINAPI IDirectInputDeviceA_QueryInterface(
403 LPDIRECTINPUTDEVICE32A this,REFIID riid,LPVOID *ppobj
407 WINE_StringFromCLSID(riid,xbuf);
408 TRACE(dinput,"(this=%p,%s,%p)\n",this,xbuf,ppobj);
409 if (!memcmp(&IID_IUnknown,riid,sizeof(*riid))) {
410 this->lpvtbl->fnAddRef(this);
414 if (!memcmp(&IID_IDirectInputDeviceA,riid,sizeof(*riid))) {
415 this->lpvtbl->fnAddRef(this);
419 if (!memcmp(&IID_IDirectInputDevice2A,riid,sizeof(*riid))) {
420 this->lpvtbl->fnAddRef(this);
427 static ULONG WINAPI IDirectInputDeviceA_AddRef(
428 LPDIRECTINPUTDEVICE32A this)
433 static HRESULT WINAPI IDirectInputDeviceA_GetCapabilities(
434 LPDIRECTINPUTDEVICE32A this,
435 LPDIDEVCAPS lpDIDevCaps)
437 FIXME(dinput, "stub!\n");
441 static HRESULT WINAPI IDirectInputDeviceA_EnumObjects(
442 LPDIRECTINPUTDEVICE32A this,
443 LPDIENUMDEVICEOBJECTSCALLBACK32A lpCallback,
447 FIXME(dinput, "stub!\n");
449 lpCallback(NULL, lpvRef);
453 static HRESULT WINAPI IDirectInputDeviceA_GetProperty(
454 LPDIRECTINPUTDEVICE32A this,
456 LPDIPROPHEADER pdiph)
458 FIXME(dinput, "stub!\n");
462 static HRESULT WINAPI IDirectInputDeviceA_GetObjectInfo(
463 LPDIRECTINPUTDEVICE32A this,
464 LPDIDEVICEOBJECTINSTANCE32A pdidoi,
468 FIXME(dinput, "stub!\n");
472 static HRESULT WINAPI IDirectInputDeviceA_GetDeviceInfo(
473 LPDIRECTINPUTDEVICE32A this,
474 LPDIDEVICEINSTANCE32A pdidi)
476 FIXME(dinput, "stub!\n");
480 static HRESULT WINAPI IDirectInputDeviceA_RunControlPanel(
481 LPDIRECTINPUTDEVICE32A this,
485 FIXME(dinput, "stub!\n");
489 static HRESULT WINAPI IDirectInputDeviceA_Initialize(
490 LPDIRECTINPUTDEVICE32A this,
495 FIXME(dinput, "stub!\n");
499 /******************************************************************************
500 * IDirectInputDevice2A
503 static HRESULT WINAPI IDirectInputDevice2A_CreateEffect(
504 LPDIRECTINPUTDEVICE32A this,
507 LPDIRECTINPUTEFFECT *ppdef,
510 FIXME(dinput, "stub!\n");
514 static HRESULT WINAPI IDirectInputDevice2A_EnumEffects(
515 LPDIRECTINPUTDEVICE32A this,
516 LPDIENUMEFFECTSCALLBACKA lpCallback,
520 FIXME(dinput, "stub!\n");
522 lpCallback(NULL, lpvRef);
526 static HRESULT WINAPI IDirectInputDevice2A_GetEffectInfo(
527 LPDIRECTINPUTDEVICE32A this,
528 LPDIEFFECTINFOA lpdei,
531 FIXME(dinput, "stub!\n");
535 static HRESULT WINAPI IDirectInputDevice2A_GetForceFeedbackState(
536 LPDIRECTINPUTDEVICE32A this,
539 FIXME(dinput, "stub!\n");
543 static HRESULT WINAPI IDirectInputDevice2A_SendForceFeedbackCommand(
544 LPDIRECTINPUTDEVICE32A this,
547 FIXME(dinput, "stub!\n");
551 static HRESULT WINAPI IDirectInputDevice2A_EnumCreatedEffectObjects(
552 LPDIRECTINPUTDEVICE32A this,
553 LPDIENUMCREATEDEFFECTOBJECTSCALLBACK lpCallback,
557 FIXME(dinput, "stub!\n");
559 lpCallback(NULL, lpvRef);
563 static HRESULT WINAPI IDirectInputDevice2A_Escape(
564 LPDIRECTINPUTDEVICE32A this,
565 LPDIEFFESCAPE lpDIEEsc)
567 FIXME(dinput, "stub!\n");
571 static HRESULT WINAPI IDirectInputDevice2A_Poll(
572 LPDIRECTINPUTDEVICE32A this)
574 FIXME(dinput, "stub!\n");
578 static HRESULT WINAPI IDirectInputDevice2A_SendDeviceData(
579 LPDIRECTINPUTDEVICE32A this,
581 LPDIDEVICEOBJECTDATA rgdod,
585 FIXME(dinput, "stub!\n");
589 /******************************************************************************
590 * SysMouseA (DInput Mouse support)
593 /******************************************************************************
594 * SetDataFormat : the application can choose the format of the data
595 * the device driver sends back with GetDeviceState.
597 * For the moment, only the "standard" configuration (c_dfDIMouse) is supported
598 * in absolute and relative mode.
600 static HRESULT WINAPI SysMouseA_SetDataFormat(
601 LPDIRECTINPUTDEVICE32A this,LPCDIDATAFORMAT df
604 LPSYSMOUSE32A mthis = (LPSYSMOUSE32A) this;
606 TRACE(dinput,"(this=%p,%p)\n",this,df);
608 TRACE(dinput,"(df.dwSize=%ld)\n",df->dwSize);
609 TRACE(dinput,"(df.dwObjsize=%ld)\n",df->dwObjSize);
610 TRACE(dinput,"(df.dwFlags=0x%08lx)\n",df->dwFlags);
611 TRACE(dinput,"(df.dwDataSize=%ld)\n",df->dwDataSize);
612 TRACE(dinput,"(df.dwNumObjs=%ld)\n",df->dwNumObjs);
614 for (i=0;i<df->dwNumObjs;i++) {
617 if (df->rgodf[i].pguid)
618 WINE_StringFromCLSID(df->rgodf[i].pguid,xbuf);
620 strcpy(xbuf,"<no guid>");
621 TRACE(dinput,"df.rgodf[%d].guid %s (%p)\n",i,xbuf, df->rgodf[i].pguid);
622 TRACE(dinput,"df.rgodf[%d].dwOfs %ld\n",i,df->rgodf[i].dwOfs);
623 TRACE(dinput,"dwType 0x%02x,dwInstance %d\n",DIDFT_GETTYPE(df->rgodf[i].dwType),DIDFT_GETINSTANCE(df->rgodf[i].dwType));
624 TRACE(dinput,"df.rgodf[%d].dwFlags 0x%08lx\n",i,df->rgodf[i].dwFlags);
627 /* Check size of data format to prevent crashes if the applications
628 sends a smaller buffer */
629 if (df->dwDataSize != sizeof(struct DIMOUSESTATE)) {
630 FIXME(dinput, "non-standard mouse configuration not supported yet.");
631 return DIERR_INVALIDPARAM;
634 /* For the moment, ignore these fields and return always as if
635 c_dfDIMouse was passed as format... */
636 if (df->dwFlags == DIDF_ABSAXIS)
641 /* We need to get the initial "previous" position to be able
645 /* Get the mouse position */
646 EVENT_QueryPointer(&rx, &ry, NULL);
648 /* Fill the initial mouse state structure */
656 /******************************************************************************
657 * GetDeviceState : returns the "state" of the mouse.
659 * For the moment, only the "standard" return structure (DIMOUSESTATE) is
662 static HRESULT WINAPI SysMouseA_GetDeviceState(
663 LPDIRECTINPUTDEVICE32A this,DWORD len,LPVOID ptr
666 struct DIMOUSESTATE *mstate = (struct DIMOUSESTATE *) ptr;
667 LPSYSMOUSE32A mthis = (LPSYSMOUSE32A) this;
669 TRACE(dinput,"(this=%p,0x%08lx,%p): \n",this,len,ptr);
671 /* Check if the buffer is big enough */
672 if (len < sizeof(struct DIMOUSESTATE)) {
673 FIXME(dinput, "unsupported state structure.");
674 return DIERR_INVALIDPARAM;
677 /* Get the mouse position */
678 EVENT_QueryPointer(&rx, &ry, &state);
679 TRACE(dinput,"(X:%d - Y:%d)\n", rx, ry);
681 /* Fill the mouse state structure */
682 if (mthis->absolute) {
686 mstate->lX = rx - mthis->prevX;
687 mstate->lY = ry - mthis->prevY;
688 /* Fill the previous positions */
693 mstate->rgbButtons[0] = (state & MK_LBUTTON ? 0xFF : 0x00);
694 mstate->rgbButtons[1] = (state & MK_RBUTTON ? 0xFF : 0x00);
695 mstate->rgbButtons[2] = (state & MK_MBUTTON ? 0xFF : 0x00);
696 mstate->rgbButtons[3] = 0x00;
703 static IDirectInputDeviceA_VTable SysKeyboardAvt={
704 IDirectInputDeviceA_QueryInterface,
705 IDirectInputDeviceA_AddRef,
706 IDirectInputDeviceA_Release,
707 IDirectInputDeviceA_GetCapabilities,
708 IDirectInputDeviceA_EnumObjects,
709 IDirectInputDeviceA_GetProperty,
710 SysKeyboardA_SetProperty,
711 SysKeyboardA_Acquire,
712 SysKeyboardA_Unacquire,
713 SysKeyboardA_GetDeviceState,
714 SysKeyboardA_GetDeviceData,
715 IDirectInputDeviceA_SetDataFormat,
716 IDirectInputDeviceA_SetEventNotification,
717 IDirectInputDeviceA_SetCooperativeLevel,
718 IDirectInputDeviceA_GetObjectInfo,
719 IDirectInputDeviceA_GetDeviceInfo,
720 IDirectInputDeviceA_RunControlPanel,
721 IDirectInputDeviceA_Initialize,
722 IDirectInputDevice2A_CreateEffect,
723 IDirectInputDevice2A_EnumEffects,
724 IDirectInputDevice2A_GetEffectInfo,
725 IDirectInputDevice2A_GetForceFeedbackState,
726 IDirectInputDevice2A_SendForceFeedbackCommand,
727 IDirectInputDevice2A_EnumCreatedEffectObjects,
728 IDirectInputDevice2A_Escape,
729 IDirectInputDevice2A_Poll,
730 IDirectInputDevice2A_SendDeviceData,
733 static IDirectInputDeviceA_VTable SysMouseAvt={
734 IDirectInputDeviceA_QueryInterface,
735 IDirectInputDeviceA_AddRef,
736 IDirectInputDeviceA_Release,
737 IDirectInputDeviceA_GetCapabilities,
738 IDirectInputDeviceA_EnumObjects,
739 IDirectInputDeviceA_GetProperty,
740 IDirectInputDeviceA_SetProperty,
741 IDirectInputDeviceA_Acquire,
742 IDirectInputDeviceA_Unacquire,
743 SysMouseA_GetDeviceState,
744 IDirectInputDeviceA_GetDeviceData,
745 SysMouseA_SetDataFormat,
746 IDirectInputDeviceA_SetEventNotification,
747 IDirectInputDeviceA_SetCooperativeLevel,
748 IDirectInputDeviceA_GetObjectInfo,
749 IDirectInputDeviceA_GetDeviceInfo,
750 IDirectInputDeviceA_RunControlPanel,
751 IDirectInputDeviceA_Initialize,
752 IDirectInputDevice2A_CreateEffect,
753 IDirectInputDevice2A_EnumEffects,
754 IDirectInputDevice2A_GetEffectInfo,
755 IDirectInputDevice2A_GetForceFeedbackState,
756 IDirectInputDevice2A_SendForceFeedbackCommand,
757 IDirectInputDevice2A_EnumCreatedEffectObjects,
758 IDirectInputDevice2A_Escape,
759 IDirectInputDevice2A_Poll,
760 IDirectInputDevice2A_SendDeviceData,