1 /* DirectInput Keyboard device
3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
5 * Copyright 2000-2001 TransGaming Technologies Inc.
6 * Copyright 2005 Raphael Junqueira
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/port.h"
34 #include "dinput_private.h"
35 #include "device_private.h"
36 #include "wine/debug.h"
37 #include "wine/unicode.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(dinput);
41 #define WINE_DINPUT_KEYBOARD_MAX_KEYS 256
43 static const IDirectInputDevice8AVtbl SysKeyboardAvt;
44 static const IDirectInputDevice8WVtbl SysKeyboardWvt;
46 typedef struct SysKeyboardImpl SysKeyboardImpl;
47 struct SysKeyboardImpl
49 struct IDirectInputDeviceImpl base;
50 BYTE DInputKeyState[WINE_DINPUT_KEYBOARD_MAX_KEYS];
53 static inline SysKeyboardImpl *impl_from_IDirectInputDevice8A(IDirectInputDevice8A *iface)
55 return CONTAINING_RECORD(CONTAINING_RECORD(iface, IDirectInputDeviceImpl, IDirectInputDevice8A_iface), SysKeyboardImpl, base);
57 static inline SysKeyboardImpl *impl_from_IDirectInputDevice8W(IDirectInputDevice8W *iface)
59 return CONTAINING_RECORD(CONTAINING_RECORD(iface, IDirectInputDeviceImpl, IDirectInputDevice8W_iface), SysKeyboardImpl, base);
61 static inline IDirectInputDevice8A *IDirectInputDevice8A_from_impl(SysKeyboardImpl *This)
63 return &This->base.IDirectInputDevice8A_iface;
65 static inline IDirectInputDevice8W *IDirectInputDevice8W_from_impl(SysKeyboardImpl *This)
67 return &This->base.IDirectInputDevice8W_iface;
70 static BYTE map_dik_code(DWORD scanCode, DWORD vkCode)
72 static const BYTE asciiCodes[] =
73 {/*32*/ DIK_SPACE,0,0,0,0,0,0,DIK_APOSTROPHE,
74 /*40*/ 0,0,0,0,DIK_COMMA,DIK_MINUS,DIK_PERIOD,DIK_SLASH,
75 /*48*/ DIK_0,DIK_1,DIK_2,DIK_3,DIK_4,DIK_5,DIK_6,DIK_7,
76 /*56*/ DIK_8,DIK_9,DIK_COLON,DIK_SEMICOLON,0,DIK_EQUALS,0,0,
77 /*64*/ DIK_AT,DIK_A,DIK_B,DIK_C,DIK_D,DIK_E,DIK_F,DIK_G,
78 /*72*/ DIK_H,DIK_I,DIK_J,DIK_K,DIK_L,DIK_M,DIK_N,DIK_O,
79 /*80*/ DIK_P,DIK_Q,DIK_R,DIK_S,DIK_T,DIK_U,DIK_V,DIK_W,
80 /*88*/ DIK_X,DIK_Y,DIK_Z,DIK_LBRACKET,0,DIK_RBRACKET,DIK_CIRCUMFLEX,DIK_UNDERLINE} /*95*/ ;
83 WCHAR c = MapVirtualKeyW(vkCode,MAPVK_VK_TO_CHAR);
86 out_code = asciiCodes[c - 32];
94 static int KeyboardCallback( LPDIRECTINPUTDEVICE8A iface, WPARAM wparam, LPARAM lparam )
96 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
97 int dik_code, ret = This->base.dwCoopLevel & DISCL_EXCLUSIVE;
98 KBDLLHOOKSTRUCT *hook = (KBDLLHOOKSTRUCT *)lparam;
101 if (wparam != WM_KEYDOWN && wparam != WM_KEYUP &&
102 wparam != WM_SYSKEYDOWN && wparam != WM_SYSKEYUP)
105 TRACE("(%p) %ld,%ld\n", iface, wparam, lparam);
107 switch (hook->vkCode)
109 /* R-Shift is special - it is an extended key with separate scan code */
110 case VK_RSHIFT : dik_code = DIK_RSHIFT; break;
111 case VK_PAUSE : dik_code = DIK_PAUSE; break;
112 case VK_NUMLOCK : dik_code = DIK_NUMLOCK; break;
113 case VK_SUBTRACT: dik_code = DIK_SUBTRACT; break;
115 dik_code = map_dik_code(hook->scanCode & 0xff, hook->vkCode);
116 if (hook->flags & LLKHF_EXTENDED) dik_code |= 0x80;
118 new_diks = hook->flags & LLKHF_UP ? 0 : 0x80;
120 /* returns now if key event already known */
121 if (new_diks == This->DInputKeyState[dik_code])
124 This->DInputKeyState[dik_code] = new_diks;
125 TRACE(" setting %02X to %02X\n", dik_code, This->DInputKeyState[dik_code]);
127 EnterCriticalSection(&This->base.crit);
128 queue_event(iface, DIDFT_MAKEINSTANCE(dik_code) | DIDFT_PSHBUTTON,
129 new_diks, hook->time, This->base.dinput->evsequence++);
130 LeaveCriticalSection(&This->base.crit);
135 const GUID DInput_Wine_Keyboard_GUID = { /* 0ab8648a-7735-11d2-8c73-71df54a96441 */
136 0x0ab8648a, 0x7735, 0x11d2, {0x8c, 0x73, 0x71, 0xdf, 0x54, 0xa9, 0x64, 0x41}
139 static void fill_keyboard_dideviceinstanceA(LPDIDEVICEINSTANCEA lpddi, DWORD version) {
141 DIDEVICEINSTANCEA ddi;
143 dwSize = lpddi->dwSize;
145 TRACE("%d %p\n", dwSize, lpddi);
147 memset(lpddi, 0, dwSize);
148 memset(&ddi, 0, sizeof(ddi));
151 ddi.guidInstance = GUID_SysKeyboard;/* DInput's GUID */
152 ddi.guidProduct = DInput_Wine_Keyboard_GUID; /* Vendor's GUID */
153 if (version >= 0x0800)
154 ddi.dwDevType = DI8DEVTYPE_KEYBOARD | (DI8DEVTYPEKEYBOARD_UNKNOWN << 8);
156 ddi.dwDevType = DIDEVTYPE_KEYBOARD | (DIDEVTYPEKEYBOARD_UNKNOWN << 8);
157 strcpy(ddi.tszInstanceName, "Keyboard");
158 strcpy(ddi.tszProductName, "Wine Keyboard");
160 memcpy(lpddi, &ddi, (dwSize < sizeof(ddi) ? dwSize : sizeof(ddi)));
163 static void fill_keyboard_dideviceinstanceW(LPDIDEVICEINSTANCEW lpddi, DWORD version) {
165 DIDEVICEINSTANCEW ddi;
167 dwSize = lpddi->dwSize;
169 TRACE("%d %p\n", dwSize, lpddi);
171 memset(lpddi, 0, dwSize);
172 memset(&ddi, 0, sizeof(ddi));
175 ddi.guidInstance = GUID_SysKeyboard;/* DInput's GUID */
176 ddi.guidProduct = DInput_Wine_Keyboard_GUID; /* Vendor's GUID */
177 if (version >= 0x0800)
178 ddi.dwDevType = DI8DEVTYPE_KEYBOARD | (DI8DEVTYPEKEYBOARD_UNKNOWN << 8);
180 ddi.dwDevType = DIDEVTYPE_KEYBOARD | (DIDEVTYPEKEYBOARD_UNKNOWN << 8);
181 MultiByteToWideChar(CP_ACP, 0, "Keyboard", -1, ddi.tszInstanceName, MAX_PATH);
182 MultiByteToWideChar(CP_ACP, 0, "Wine Keyboard", -1, ddi.tszProductName, MAX_PATH);
184 memcpy(lpddi, &ddi, (dwSize < sizeof(ddi) ? dwSize : sizeof(ddi)));
187 static BOOL keyboarddev_enum_deviceA(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEA lpddi, DWORD version, int id)
192 if ((dwDevType == 0) ||
193 ((dwDevType == DIDEVTYPE_KEYBOARD) && (version < 0x0800)) ||
194 (((dwDevType == DI8DEVCLASS_KEYBOARD) || (dwDevType == DI8DEVTYPE_KEYBOARD)) && (version >= 0x0800))) {
195 TRACE("Enumerating the Keyboard device\n");
197 fill_keyboard_dideviceinstanceA(lpddi, version);
205 static BOOL keyboarddev_enum_deviceW(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEW lpddi, DWORD version, int id)
210 if ((dwDevType == 0) ||
211 ((dwDevType == DIDEVTYPE_KEYBOARD) && (version < 0x0800)) ||
212 (((dwDevType == DI8DEVCLASS_KEYBOARD) || (dwDevType == DI8DEVTYPE_KEYBOARD)) && (version >= 0x0800))) {
213 TRACE("Enumerating the Keyboard device\n");
215 fill_keyboard_dideviceinstanceW(lpddi, version);
223 static SysKeyboardImpl *alloc_device(REFGUID rguid, IDirectInputImpl *dinput)
225 SysKeyboardImpl* newDevice;
226 LPDIDATAFORMAT df = NULL;
229 newDevice = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(SysKeyboardImpl));
230 newDevice->base.IDirectInputDevice8A_iface.lpVtbl = &SysKeyboardAvt;
231 newDevice->base.IDirectInputDevice8W_iface.lpVtbl = &SysKeyboardWvt;
232 newDevice->base.ref = 1;
233 memcpy(&newDevice->base.guid, rguid, sizeof(*rguid));
234 newDevice->base.dinput = dinput;
235 newDevice->base.event_proc = KeyboardCallback;
236 InitializeCriticalSection(&newDevice->base.crit);
237 newDevice->base.crit.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": SysKeyboardImpl*->base.crit");
239 /* Create copy of default data format */
240 if (!(df = HeapAlloc(GetProcessHeap(), 0, c_dfDIKeyboard.dwSize))) goto failed;
241 memcpy(df, &c_dfDIKeyboard, c_dfDIKeyboard.dwSize);
242 if (!(df->rgodf = HeapAlloc(GetProcessHeap(), 0, df->dwNumObjs * df->dwObjSize))) goto failed;
244 for (i = 0; i < df->dwNumObjs; i++)
248 if (!GetKeyNameTextA(((i & 0x7f) << 16) | ((i & 0x80) << 17), buf, sizeof(buf)))
251 memcpy(&df->rgodf[idx], &c_dfDIKeyboard.rgodf[i], df->dwObjSize);
252 df->rgodf[idx++].dwType = DIDFT_MAKEINSTANCE(i) | DIDFT_PSHBUTTON;
256 newDevice->base.data_format.wine_df = df;
257 IDirectInput_AddRef(&newDevice->base.dinput->IDirectInput7A_iface);
259 EnterCriticalSection(&dinput->crit);
260 list_add_tail(&dinput->devices_list, &newDevice->base.entry);
261 LeaveCriticalSection(&dinput->crit);
266 if (df) HeapFree(GetProcessHeap(), 0, df->rgodf);
267 HeapFree(GetProcessHeap(), 0, df);
268 HeapFree(GetProcessHeap(), 0, newDevice);
273 static HRESULT keyboarddev_create_deviceA(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEA* pdev)
275 if ((IsEqualGUID(&GUID_SysKeyboard,rguid)) || /* Generic Keyboard */
276 (IsEqualGUID(&DInput_Wine_Keyboard_GUID,rguid))) { /* Wine Keyboard */
277 if ((riid == NULL) ||
278 IsEqualGUID(&IID_IDirectInputDeviceA,riid) ||
279 IsEqualGUID(&IID_IDirectInputDevice2A,riid) ||
280 IsEqualGUID(&IID_IDirectInputDevice7A,riid) ||
281 IsEqualGUID(&IID_IDirectInputDevice8A,riid)) {
283 SysKeyboardImpl *This = alloc_device(rguid, dinput);
286 return DIERR_OUTOFMEMORY;
288 *pdev = (IDirectInputDeviceA*) &This->base.IDirectInputDevice8A_iface;
289 TRACE("Creating a Keyboard device (%p)\n", *pdev);
292 return DIERR_NOINTERFACE;
294 return DIERR_DEVICENOTREG;
297 static HRESULT keyboarddev_create_deviceW(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEW* pdev)
299 if ((IsEqualGUID(&GUID_SysKeyboard,rguid)) || /* Generic Keyboard */
300 (IsEqualGUID(&DInput_Wine_Keyboard_GUID,rguid))) { /* Wine Keyboard */
301 if ((riid == NULL) ||
302 IsEqualGUID(&IID_IDirectInputDeviceW,riid) ||
303 IsEqualGUID(&IID_IDirectInputDevice2W,riid) ||
304 IsEqualGUID(&IID_IDirectInputDevice7W,riid) ||
305 IsEqualGUID(&IID_IDirectInputDevice8W,riid)) {
307 SysKeyboardImpl *This = alloc_device(rguid, dinput);
310 return DIERR_OUTOFMEMORY;
312 *pdev = (IDirectInputDeviceW*) &This->base.IDirectInputDevice8W_iface;
313 TRACE("Creating a Keyboard device (%p)\n", *pdev);
316 return DIERR_NOINTERFACE;
318 return DIERR_DEVICENOTREG;
321 const struct dinput_device keyboard_device = {
322 "Wine keyboard driver",
323 keyboarddev_enum_deviceA,
324 keyboarddev_enum_deviceW,
325 keyboarddev_create_deviceA,
326 keyboarddev_create_deviceW
329 static HRESULT WINAPI SysKeyboardWImpl_GetDeviceState(LPDIRECTINPUTDEVICE8W iface, DWORD len, LPVOID ptr)
331 SysKeyboardImpl *This = impl_from_IDirectInputDevice8W(iface);
332 TRACE("(%p)->(%d,%p)\n", This, len, ptr);
334 if (!This->base.acquired) return DIERR_NOTACQUIRED;
336 if (len != This->base.data_format.user_df->dwDataSize )
337 return DIERR_INVALIDPARAM;
339 EnterCriticalSection(&This->base.crit);
341 if (TRACE_ON(dinput)) {
343 for (i = 0; i < WINE_DINPUT_KEYBOARD_MAX_KEYS; i++) {
344 if (This->DInputKeyState[i] != 0x00)
345 TRACE(" - %02X: %02x\n", i, This->DInputKeyState[i]);
349 fill_DataFormat(ptr, len, This->DInputKeyState, &This->base.data_format);
350 LeaveCriticalSection(&This->base.crit);
355 static HRESULT WINAPI SysKeyboardAImpl_GetDeviceState(LPDIRECTINPUTDEVICE8A iface, DWORD len, LPVOID ptr)
357 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
358 return SysKeyboardWImpl_GetDeviceState(IDirectInputDevice8W_from_impl(This), len, ptr);
361 /******************************************************************************
362 * GetCapabilities : get the device capabilities
364 static HRESULT WINAPI SysKeyboardWImpl_GetCapabilities(LPDIRECTINPUTDEVICE8W iface, LPDIDEVCAPS lpDIDevCaps)
366 SysKeyboardImpl *This = impl_from_IDirectInputDevice8W(iface);
369 TRACE("(this=%p,%p)\n",This,lpDIDevCaps);
371 if ((lpDIDevCaps->dwSize != sizeof(DIDEVCAPS)) && (lpDIDevCaps->dwSize != sizeof(DIDEVCAPS_DX3))) {
372 WARN("invalid parameter\n");
373 return DIERR_INVALIDPARAM;
376 devcaps.dwSize = lpDIDevCaps->dwSize;
377 devcaps.dwFlags = DIDC_ATTACHED;
378 if (This->base.dinput->dwVersion >= 0x0800)
379 devcaps.dwDevType = DI8DEVTYPE_KEYBOARD | (DI8DEVTYPEKEYBOARD_UNKNOWN << 8);
381 devcaps.dwDevType = DIDEVTYPE_KEYBOARD | (DIDEVTYPEKEYBOARD_UNKNOWN << 8);
383 devcaps.dwButtons = This->base.data_format.wine_df->dwNumObjs;
385 devcaps.dwFFSamplePeriod = 0;
386 devcaps.dwFFMinTimeResolution = 0;
387 devcaps.dwFirmwareRevision = 100;
388 devcaps.dwHardwareRevision = 100;
389 devcaps.dwFFDriverVersion = 0;
391 memcpy(lpDIDevCaps, &devcaps, lpDIDevCaps->dwSize);
396 static HRESULT WINAPI SysKeyboardAImpl_GetCapabilities(LPDIRECTINPUTDEVICE8A iface, LPDIDEVCAPS lpDIDevCaps)
398 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
399 return SysKeyboardWImpl_GetCapabilities(IDirectInputDevice8W_from_impl(This), lpDIDevCaps);
402 /******************************************************************************
403 * GetObjectInfo : get information about a device object such as a button
406 static HRESULT WINAPI
407 SysKeyboardAImpl_GetObjectInfo(
408 LPDIRECTINPUTDEVICE8A iface,
409 LPDIDEVICEOBJECTINSTANCEA pdidoi,
415 res = IDirectInputDevice2AImpl_GetObjectInfo(iface, pdidoi, dwObj, dwHow);
416 if (res != DI_OK) return res;
418 if (!GetKeyNameTextA((DIDFT_GETINSTANCE(pdidoi->dwType) & 0x80) << 17 |
419 (DIDFT_GETINSTANCE(pdidoi->dwType) & 0x7f) << 16,
420 pdidoi->tszName, sizeof(pdidoi->tszName)))
421 return DIERR_OBJECTNOTFOUND;
423 _dump_OBJECTINSTANCEA(pdidoi);
427 static HRESULT WINAPI SysKeyboardWImpl_GetObjectInfo(LPDIRECTINPUTDEVICE8W iface,
428 LPDIDEVICEOBJECTINSTANCEW pdidoi,
434 res = IDirectInputDevice2WImpl_GetObjectInfo(iface, pdidoi, dwObj, dwHow);
435 if (res != DI_OK) return res;
437 if (!GetKeyNameTextW((DIDFT_GETINSTANCE(pdidoi->dwType) & 0x80) << 17 |
438 (DIDFT_GETINSTANCE(pdidoi->dwType) & 0x7f) << 16,
440 sizeof(pdidoi->tszName)/sizeof(pdidoi->tszName[0])))
441 return DIERR_OBJECTNOTFOUND;
443 _dump_OBJECTINSTANCEW(pdidoi);
447 /******************************************************************************
448 * GetDeviceInfo : get information about a device's identity
450 static HRESULT WINAPI SysKeyboardAImpl_GetDeviceInfo(
451 LPDIRECTINPUTDEVICE8A iface,
452 LPDIDEVICEINSTANCEA pdidi)
454 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
455 TRACE("(this=%p,%p)\n", This, pdidi);
457 if (pdidi->dwSize != sizeof(DIDEVICEINSTANCEA)) {
458 WARN(" dinput3 not supported yet...\n");
462 fill_keyboard_dideviceinstanceA(pdidi, This->base.dinput->dwVersion);
467 static HRESULT WINAPI SysKeyboardWImpl_GetDeviceInfo(LPDIRECTINPUTDEVICE8W iface, LPDIDEVICEINSTANCEW pdidi)
469 SysKeyboardImpl *This = impl_from_IDirectInputDevice8W(iface);
470 TRACE("(this=%p,%p)\n", This, pdidi);
472 if (pdidi->dwSize != sizeof(DIDEVICEINSTANCEW)) {
473 WARN(" dinput3 not supported yet...\n");
477 fill_keyboard_dideviceinstanceW(pdidi, This->base.dinput->dwVersion);
482 /******************************************************************************
483 * GetProperty : Retrieves information about the input device.
485 static HRESULT WINAPI SysKeyboardWImpl_GetProperty(LPDIRECTINPUTDEVICE8W iface,
486 REFGUID rguid, LPDIPROPHEADER pdiph)
488 SysKeyboardImpl *This = impl_from_IDirectInputDevice8W(iface);
490 TRACE("(%p) %s,%p\n", iface, debugstr_guid(rguid), pdiph);
491 _dump_DIPROPHEADER(pdiph);
493 if (!IS_DIPROP(rguid)) return DI_OK;
495 switch (LOWORD(rguid))
497 case (DWORD_PTR)DIPROP_KEYNAME:
500 LPDIPROPSTRING ps = (LPDIPROPSTRING)pdiph;
501 DIDEVICEOBJECTINSTANCEW didoi;
503 if (pdiph->dwSize != sizeof(DIPROPSTRING))
504 return DIERR_INVALIDPARAM;
506 didoi.dwSize = sizeof(DIDEVICEOBJECTINSTANCEW);
508 hr = SysKeyboardWImpl_GetObjectInfo(iface, &didoi, ps->diph.dwObj, ps->diph.dwHow);
510 memcpy(ps->wsz, didoi.tszName, sizeof(ps->wsz));
514 return IDirectInputDevice2AImpl_GetProperty( IDirectInputDevice8A_from_impl(This), rguid, pdiph );
519 static HRESULT WINAPI SysKeyboardAImpl_GetProperty(LPDIRECTINPUTDEVICE8A iface,
520 REFGUID rguid, LPDIPROPHEADER pdiph)
522 SysKeyboardImpl *This = impl_from_IDirectInputDevice8A(iface);
523 return SysKeyboardWImpl_GetProperty(IDirectInputDevice8W_from_impl(This), rguid, pdiph);
526 static const IDirectInputDevice8AVtbl SysKeyboardAvt =
528 IDirectInputDevice2AImpl_QueryInterface,
529 IDirectInputDevice2AImpl_AddRef,
530 IDirectInputDevice2AImpl_Release,
531 SysKeyboardAImpl_GetCapabilities,
532 IDirectInputDevice2AImpl_EnumObjects,
533 SysKeyboardAImpl_GetProperty,
534 IDirectInputDevice2AImpl_SetProperty,
535 IDirectInputDevice2AImpl_Acquire,
536 IDirectInputDevice2AImpl_Unacquire,
537 SysKeyboardAImpl_GetDeviceState,
538 IDirectInputDevice2AImpl_GetDeviceData,
539 IDirectInputDevice2AImpl_SetDataFormat,
540 IDirectInputDevice2AImpl_SetEventNotification,
541 IDirectInputDevice2AImpl_SetCooperativeLevel,
542 SysKeyboardAImpl_GetObjectInfo,
543 SysKeyboardAImpl_GetDeviceInfo,
544 IDirectInputDevice2AImpl_RunControlPanel,
545 IDirectInputDevice2AImpl_Initialize,
546 IDirectInputDevice2AImpl_CreateEffect,
547 IDirectInputDevice2AImpl_EnumEffects,
548 IDirectInputDevice2AImpl_GetEffectInfo,
549 IDirectInputDevice2AImpl_GetForceFeedbackState,
550 IDirectInputDevice2AImpl_SendForceFeedbackCommand,
551 IDirectInputDevice2AImpl_EnumCreatedEffectObjects,
552 IDirectInputDevice2AImpl_Escape,
553 IDirectInputDevice2AImpl_Poll,
554 IDirectInputDevice2AImpl_SendDeviceData,
555 IDirectInputDevice7AImpl_EnumEffectsInFile,
556 IDirectInputDevice7AImpl_WriteEffectToFile,
557 IDirectInputDevice8AImpl_BuildActionMap,
558 IDirectInputDevice8AImpl_SetActionMap,
559 IDirectInputDevice8AImpl_GetImageInfo
562 static const IDirectInputDevice8WVtbl SysKeyboardWvt =
564 IDirectInputDevice2WImpl_QueryInterface,
565 IDirectInputDevice2WImpl_AddRef,
566 IDirectInputDevice2WImpl_Release,
567 SysKeyboardWImpl_GetCapabilities,
568 IDirectInputDevice2WImpl_EnumObjects,
569 SysKeyboardWImpl_GetProperty,
570 IDirectInputDevice2WImpl_SetProperty,
571 IDirectInputDevice2WImpl_Acquire,
572 IDirectInputDevice2WImpl_Unacquire,
573 SysKeyboardWImpl_GetDeviceState,
574 IDirectInputDevice2WImpl_GetDeviceData,
575 IDirectInputDevice2WImpl_SetDataFormat,
576 IDirectInputDevice2WImpl_SetEventNotification,
577 IDirectInputDevice2WImpl_SetCooperativeLevel,
578 SysKeyboardWImpl_GetObjectInfo,
579 SysKeyboardWImpl_GetDeviceInfo,
580 IDirectInputDevice2WImpl_RunControlPanel,
581 IDirectInputDevice2WImpl_Initialize,
582 IDirectInputDevice2WImpl_CreateEffect,
583 IDirectInputDevice2WImpl_EnumEffects,
584 IDirectInputDevice2WImpl_GetEffectInfo,
585 IDirectInputDevice2WImpl_GetForceFeedbackState,
586 IDirectInputDevice2WImpl_SendForceFeedbackCommand,
587 IDirectInputDevice2WImpl_EnumCreatedEffectObjects,
588 IDirectInputDevice2WImpl_Escape,
589 IDirectInputDevice2WImpl_Poll,
590 IDirectInputDevice2WImpl_SendDeviceData,
591 IDirectInputDevice7WImpl_EnumEffectsInFile,
592 IDirectInputDevice7WImpl_WriteEffectToFile,
593 IDirectInputDevice8WImpl_BuildActionMap,
594 IDirectInputDevice8WImpl_SetActionMap,
595 IDirectInputDevice8WImpl_GetImageInfo