3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 /* This file contains all the Device specific functions that can be used as stubs
23 by real device implementations.
25 It also contains all the helper functions.
31 #include "wine/debug.h"
32 #include "wine/unicode.h"
38 #include "device_private.h"
39 #include "dinput_private.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(dinput);
43 /******************************************************************************
44 * Various debugging tools
46 void _dump_cooperativelevel_DI(DWORD dwFlags) {
47 if (TRACE_ON(dinput)) {
53 #define FE(x) { x, #x}
57 FE(DISCL_NONEXCLUSIVE),
61 for (i = 0; i < (sizeof(flags) / sizeof(flags[0])); i++)
62 if (flags[i].mask & dwFlags)
63 DPRINTF("%s ",flags[i].name);
68 void _dump_EnumObjects_flags(DWORD dwFlags) {
69 if (TRACE_ON(dinput)) {
76 #define FE(x) { x, #x}
85 FE(DIDFT_FFEFFECTTRIGGER),
87 FE(DIDFT_VENDORDEFINED),
92 type = (dwFlags & 0xFF0000FF);
93 instance = ((dwFlags >> 8) & 0xFFFF);
95 if (type == DIDFT_ALL) {
96 DPRINTF(" DIDFT_ALL");
98 for (i = 0; i < (sizeof(flags) / sizeof(flags[0])); i++) {
99 if (flags[i].mask & type) {
100 type &= ~flags[i].mask;
101 DPRINTF(" %s",flags[i].name);
105 DPRINTF(" (unhandled: %08x)", type);
108 DPRINTF(" / Instance: ");
109 if (instance == ((DIDFT_ANYINSTANCE >> 8) & 0xFFFF)) {
110 DPRINTF("DIDFT_ANYINSTANCE");
112 DPRINTF("%3d", instance);
117 void _dump_DIPROPHEADER(LPCDIPROPHEADER diph) {
118 if (TRACE_ON(dinput)) {
119 DPRINTF(" - dwObj = 0x%08x\n", diph->dwObj);
120 DPRINTF(" - dwHow = %s\n",
121 ((diph->dwHow == DIPH_DEVICE) ? "DIPH_DEVICE" :
122 ((diph->dwHow == DIPH_BYOFFSET) ? "DIPH_BYOFFSET" :
123 ((diph->dwHow == DIPH_BYID)) ? "DIPH_BYID" : "unknown")));
127 void _dump_OBJECTINSTANCEA(DIDEVICEOBJECTINSTANCEA *ddoi) {
128 if (TRACE_ON(dinput)) {
129 DPRINTF(" - enumerating : %s ('%s') - %2d - 0x%08x - %s\n",
130 debugstr_guid(&ddoi->guidType), _dump_dinput_GUID(&ddoi->guidType), ddoi->dwOfs, ddoi->dwType, ddoi->tszName);
134 void _dump_OBJECTINSTANCEW(DIDEVICEOBJECTINSTANCEW *ddoi) {
135 if (TRACE_ON(dinput)) {
136 DPRINTF(" - enumerating : %s ('%s'), - %2d - 0x%08x - %s\n",
137 debugstr_guid(&ddoi->guidType), _dump_dinput_GUID(&ddoi->guidType), ddoi->dwOfs, ddoi->dwType, debugstr_w(ddoi->tszName));
141 /* This function is a helper to convert a GUID into any possible DInput GUID out there */
142 const char *_dump_dinput_GUID(const GUID *guid) {
144 static const struct {
148 #define FE(x) { &x, #x}
161 FE(GUID_SysKeyboard),
163 FE(GUID_ConstantForce),
169 FE(GUID_SawtoothDown),
179 for (i = 0; i < (sizeof(guids) / sizeof(guids[0])); i++) {
180 if (IsEqualGUID(guids[i].guid, guid)) {
181 return guids[i].name;
184 return "Unknown GUID";
187 void _dump_DIDATAFORMAT(const DIDATAFORMAT *df) {
190 TRACE("Dumping DIDATAFORMAT structure:\n");
191 TRACE(" - dwSize: %d\n", df->dwSize);
192 if (df->dwSize != sizeof(DIDATAFORMAT)) {
193 WARN("Non-standard DIDATAFORMAT structure size %d\n", df->dwSize);
195 TRACE(" - dwObjsize: %d\n", df->dwObjSize);
196 if (df->dwObjSize != sizeof(DIOBJECTDATAFORMAT)) {
197 WARN("Non-standard DIOBJECTDATAFORMAT structure size %d\n", df->dwObjSize);
199 TRACE(" - dwFlags: 0x%08x (", df->dwFlags);
200 switch (df->dwFlags) {
201 case DIDF_ABSAXIS: TRACE("DIDF_ABSAXIS"); break;
202 case DIDF_RELAXIS: TRACE("DIDF_RELAXIS"); break;
203 default: TRACE("unknown"); break;
206 TRACE(" - dwDataSize: %d\n", df->dwDataSize);
207 TRACE(" - dwNumObjs: %d\n", df->dwNumObjs);
209 for (i = 0; i < df->dwNumObjs; i++) {
210 TRACE(" - Object %d:\n", i);
211 TRACE(" * GUID: %s ('%s')\n", debugstr_guid(df->rgodf[i].pguid), _dump_dinput_GUID(df->rgodf[i].pguid));
212 TRACE(" * dwOfs: %d\n", df->rgodf[i].dwOfs);
213 TRACE(" * dwType: 0x%08x\n", df->rgodf[i].dwType);
214 TRACE(" "); _dump_EnumObjects_flags(df->rgodf[i].dwType); TRACE("\n");
215 TRACE(" * dwFlags: 0x%08x\n", df->rgodf[i].dwFlags);
219 /* Conversion between internal data buffer and external data buffer */
220 void fill_DataFormat(void *out, const void *in, DataFormat *df) {
222 const char *in_c = in;
223 char *out_c = (char *) out;
225 if (df->dt == NULL) {
226 /* This means that the app uses Wine's internal data format */
227 memcpy(out, in, df->internal_format_size);
229 for (i = 0; i < df->size; i++) {
230 if (df->dt[i].offset_in >= 0) {
231 switch (df->dt[i].size) {
233 TRACE("Copying (c) to %d from %d (value %d)\n",
234 df->dt[i].offset_out, df->dt[i].offset_in, *(in_c + df->dt[i].offset_in));
235 *(out_c + df->dt[i].offset_out) = *(in_c + df->dt[i].offset_in);
239 TRACE("Copying (s) to %d from %d (value %d)\n",
240 df->dt[i].offset_out, df->dt[i].offset_in, *((const short *)(in_c + df->dt[i].offset_in)));
241 *((short *)(out_c + df->dt[i].offset_out)) = *((const short *)(in_c + df->dt[i].offset_in));
245 TRACE("Copying (i) to %d from %d (value %d)\n",
246 df->dt[i].offset_out, df->dt[i].offset_in, *((const int *)(in_c + df->dt[i].offset_in)));
247 *((int *)(out_c + df->dt[i].offset_out)) = *((const int *)(in_c + df->dt[i].offset_in));
251 memcpy((out_c + df->dt[i].offset_out), (in_c + df->dt[i].offset_in), df->dt[i].size);
255 switch (df->dt[i].size) {
257 TRACE("Copying (c) to %d default value %d\n",
258 df->dt[i].offset_out, df->dt[i].value);
259 *(out_c + df->dt[i].offset_out) = (char) df->dt[i].value;
263 TRACE("Copying (s) to %d default value %d\n",
264 df->dt[i].offset_out, df->dt[i].value);
265 *((short *) (out_c + df->dt[i].offset_out)) = (short) df->dt[i].value;
269 TRACE("Copying (i) to %d default value %d\n",
270 df->dt[i].offset_out, df->dt[i].value);
271 *((int *) (out_c + df->dt[i].offset_out)) = (int) df->dt[i].value;
275 memset((out_c + df->dt[i].offset_out), 0, df->dt[i].size);
283 void release_DataFormat(DataFormat * format)
285 TRACE("Deleting DataTransform :\n");
287 HeapFree(GetProcessHeap(), 0, format->dt);
290 DataFormat *create_DataFormat(const DIDATAFORMAT *wine_format, LPCDIDATAFORMAT asked_format, int *offset) {
299 ret = HeapAlloc(GetProcessHeap(), 0, sizeof(DataFormat));
301 done = HeapAlloc(GetProcessHeap(), 0, sizeof(int) * asked_format->dwNumObjs);
302 memset(done, 0, sizeof(int) * asked_format->dwNumObjs);
304 dt = HeapAlloc(GetProcessHeap(), 0, asked_format->dwNumObjs * sizeof(DataTransform));
306 TRACE("Creating DataTransform :\n");
308 for (i = 0; i < wine_format->dwNumObjs; i++) {
311 for (j = 0; j < asked_format->dwNumObjs; j++) {
315 if (/* Check if the application either requests any GUID and if not, it if matches
316 * the GUID of the Wine object.
318 ((asked_format->rgodf[j].pguid == NULL) ||
319 (wine_format->rgodf[i].pguid == NULL) ||
320 (IsEqualGUID(wine_format->rgodf[i].pguid, asked_format->rgodf[j].pguid)))
322 (/* Then check if it accepts any instance id, and if not, if it matches Wine's
325 (DIDFT_GETINSTANCE(asked_format->rgodf[j].dwType) == 0xFFFF) ||
326 (DIDFT_GETINSTANCE(asked_format->rgodf[j].dwType) == 0x00FF) || /* This is mentionned in no DX docs, but it works fine - tested on WinXP */
327 (DIDFT_GETINSTANCE(asked_format->rgodf[j].dwType) == DIDFT_GETINSTANCE(wine_format->rgodf[i].dwType)))
329 ( /* Then if the asked type matches the one Wine provides */
330 wine_format->rgodf[i].dwType & asked_format->rgodf[j].dwType)) {
334 TRACE("Matching :\n");
335 TRACE(" - Asked (%d) :\n", j);
336 TRACE(" * GUID: %s ('%s')\n",
337 debugstr_guid(asked_format->rgodf[j].pguid),
338 _dump_dinput_GUID(asked_format->rgodf[j].pguid));
339 TRACE(" * Offset: %3d\n", asked_format->rgodf[j].dwOfs);
340 TRACE(" * dwType: %08x\n", asked_format->rgodf[j].dwType);
341 TRACE(" "); _dump_EnumObjects_flags(asked_format->rgodf[j].dwType); TRACE("\n");
343 TRACE(" - Wine (%d) :\n", i);
344 TRACE(" * GUID: %s ('%s')\n",
345 debugstr_guid(wine_format->rgodf[i].pguid),
346 _dump_dinput_GUID(wine_format->rgodf[i].pguid));
347 TRACE(" * Offset: %3d\n", wine_format->rgodf[i].dwOfs);
348 TRACE(" * dwType: %08x\n", wine_format->rgodf[i].dwType);
349 TRACE(" "); _dump_EnumObjects_flags(wine_format->rgodf[i].dwType); TRACE("\n");
351 if (wine_format->rgodf[i].dwType & DIDFT_BUTTON)
352 dt[index].size = sizeof(BYTE);
354 dt[index].size = sizeof(DWORD);
355 dt[index].offset_in = wine_format->rgodf[i].dwOfs;
356 if (asked_format->rgodf[j].dwOfs < next) {
357 WARN("bad format: dwOfs=%d, changing to %d\n", asked_format->rgodf[j].dwOfs, next);
358 dt[index].offset_out = next;
361 dt[index].offset_out = asked_format->rgodf[j].dwOfs;
362 offset[i] = asked_format->rgodf[j].dwOfs;
365 next = next + dt[index].size;
367 if (wine_format->rgodf[i].dwOfs != dt[index].offset_out)
375 if (j == asked_format->dwNumObjs)
379 TRACE("Setting to default value :\n");
380 for (j = 0; j < asked_format->dwNumObjs; j++) {
382 TRACE(" - Asked (%d) :\n", j);
383 TRACE(" * GUID: %s ('%s')\n",
384 debugstr_guid(asked_format->rgodf[j].pguid),
385 _dump_dinput_GUID(asked_format->rgodf[j].pguid));
386 TRACE(" * Offset: %3d\n", asked_format->rgodf[j].dwOfs);
387 TRACE(" * dwType: %08x\n", asked_format->rgodf[j].dwType);
388 TRACE(" "); _dump_EnumObjects_flags(asked_format->rgodf[j].dwType); TRACE("\n");
390 if (asked_format->rgodf[j].dwType & DIDFT_BUTTON)
391 dt[index].size = sizeof(BYTE);
393 dt[index].size = sizeof(DWORD);
394 dt[index].offset_in = -1;
395 dt[index].offset_out = asked_format->rgodf[j].dwOfs;
403 ret->internal_format_size = wine_format->dwDataSize;
407 HeapFree(GetProcessHeap(), 0, dt);
412 HeapFree(GetProcessHeap(), 0, done);
417 BOOL DIEnumDevicesCallbackAtoW(LPCDIDEVICEOBJECTINSTANCEA lpddi, LPVOID lpvRef) {
418 DIDEVICEOBJECTINSTANCEW ddtmp;
419 device_enumobjects_AtoWcb_data* data;
421 data = (device_enumobjects_AtoWcb_data*) lpvRef;
423 memset(&ddtmp, 0, sizeof(ddtmp));
425 ddtmp.dwSize = sizeof(DIDEVICEINSTANCEW);
426 ddtmp.guidType = lpddi->guidType;
427 ddtmp.dwOfs = lpddi->dwOfs;
428 ddtmp.dwType = lpddi->dwType;
429 ddtmp.dwFlags = lpddi->dwFlags;
430 MultiByteToWideChar(CP_ACP, 0, lpddi->tszName, -1, ddtmp.tszName, MAX_PATH);
432 if (lpddi->dwSize == sizeof(DIDEVICEINSTANCEA)) {
434 * if dwSize < sizeof(DIDEVICEINSTANCEA of DInput version >= 5)
435 * force feedback and other newer datas aren't available
437 ddtmp.dwFFMaxForce = lpddi->dwFFMaxForce;
438 ddtmp.dwFFForceResolution = lpddi->dwFFForceResolution;
439 ddtmp.wCollectionNumber = lpddi->wCollectionNumber;
440 ddtmp.wDesignatorIndex = lpddi->wDesignatorIndex;
441 ddtmp.wUsagePage = lpddi->wUsagePage;
442 ddtmp.wUsage = lpddi->wUsage;
443 ddtmp.dwDimension = lpddi->dwDimension;
444 ddtmp.wExponent = lpddi->wExponent;
445 ddtmp.wReserved = lpddi->wReserved;
447 return data->lpCallBack(&ddtmp, data->lpvRef);
450 /******************************************************************************
451 * IDirectInputDeviceA
454 HRESULT WINAPI IDirectInputDevice2AImpl_SetDataFormat(
455 LPDIRECTINPUTDEVICE8A iface,LPCDIDATAFORMAT df
457 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
459 TRACE("(this=%p,%p)\n",This,df);
461 _dump_DIDATAFORMAT(df);
466 HRESULT WINAPI IDirectInputDevice2AImpl_SetCooperativeLevel(
467 LPDIRECTINPUTDEVICE8A iface,HWND hwnd,DWORD dwflags
469 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
470 TRACE("(this=%p,%p,0x%08x)\n", This, hwnd, dwflags);
471 if (TRACE_ON(dinput)) {
472 TRACE(" cooperative level : ");
473 _dump_cooperativelevel_DI(dwflags);
478 /******************************************************************************
479 * SetEventNotification : specifies event to be sent on state change
481 HRESULT WINAPI IDirectInputDevice2AImpl_SetEventNotification(
482 LPDIRECTINPUTDEVICE8A iface, HANDLE event)
484 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
486 TRACE("(%p) %p\n", This, event);
488 This->hEvent = event;
492 ULONG WINAPI IDirectInputDevice2AImpl_Release(LPDIRECTINPUTDEVICE8A iface)
494 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
496 ref = InterlockedDecrement(&(This->ref));
498 HeapFree(GetProcessHeap(),0,This);
502 HRESULT WINAPI IDirectInputDevice2AImpl_QueryInterface(
503 LPDIRECTINPUTDEVICE8A iface,REFIID riid,LPVOID *ppobj
506 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
508 TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
509 if (IsEqualGUID(&IID_IUnknown,riid)) {
510 IDirectInputDevice2_AddRef(iface);
514 if (IsEqualGUID(&IID_IDirectInputDeviceA,riid)) {
515 IDirectInputDevice2_AddRef(iface);
519 if (IsEqualGUID(&IID_IDirectInputDevice2A,riid)) {
520 IDirectInputDevice2_AddRef(iface);
524 if (IsEqualGUID(&IID_IDirectInputDevice7A,riid)) {
525 IDirectInputDevice7_AddRef(iface);
529 if (IsEqualGUID(&IID_IDirectInputDevice8A,riid)) {
530 IDirectInputDevice8_AddRef(iface);
534 TRACE("Unsupported interface !\n");
538 HRESULT WINAPI IDirectInputDevice2WImpl_QueryInterface(
539 LPDIRECTINPUTDEVICE8W iface,REFIID riid,LPVOID *ppobj
542 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
544 TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
545 if (IsEqualGUID(&IID_IUnknown,riid)) {
546 IDirectInputDevice2_AddRef(iface);
550 if (IsEqualGUID(&IID_IDirectInputDeviceW,riid)) {
551 IDirectInputDevice2_AddRef(iface);
555 if (IsEqualGUID(&IID_IDirectInputDevice2W,riid)) {
556 IDirectInputDevice2_AddRef(iface);
560 if (IsEqualGUID(&IID_IDirectInputDevice7W,riid)) {
561 IDirectInputDevice7_AddRef(iface);
565 if (IsEqualGUID(&IID_IDirectInputDevice8W,riid)) {
566 IDirectInputDevice8_AddRef(iface);
570 TRACE("Unsupported interface !\n");
574 ULONG WINAPI IDirectInputDevice2AImpl_AddRef(
575 LPDIRECTINPUTDEVICE8A iface)
577 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
578 return InterlockedIncrement(&(This->ref));
581 HRESULT WINAPI IDirectInputDevice2AImpl_EnumObjects(
582 LPDIRECTINPUTDEVICE8A iface,
583 LPDIENUMDEVICEOBJECTSCALLBACKA lpCallback,
587 FIXME("(this=%p,%p,%p,%08x): stub!\n", iface, lpCallback, lpvRef, dwFlags);
588 if (TRACE_ON(dinput)) {
589 DPRINTF(" - flags = ");
590 _dump_EnumObjects_flags(dwFlags);
597 HRESULT WINAPI IDirectInputDevice2WImpl_EnumObjects(
598 LPDIRECTINPUTDEVICE8W iface,
599 LPDIENUMDEVICEOBJECTSCALLBACKW lpCallback,
603 FIXME("(this=%p,%p,%p,%08x): stub!\n", iface, lpCallback, lpvRef, dwFlags);
604 if (TRACE_ON(dinput)) {
605 DPRINTF(" - flags = ");
606 _dump_EnumObjects_flags(dwFlags);
613 HRESULT WINAPI IDirectInputDevice2AImpl_GetProperty(
614 LPDIRECTINPUTDEVICE8A iface,
616 LPDIPROPHEADER pdiph)
618 FIXME("(this=%p,%s,%p): stub!\n",
619 iface, debugstr_guid(rguid), pdiph);
621 if (TRACE_ON(dinput))
622 _dump_DIPROPHEADER(pdiph);
627 HRESULT WINAPI IDirectInputDevice2AImpl_GetObjectInfo(
628 LPDIRECTINPUTDEVICE8A iface,
629 LPDIDEVICEOBJECTINSTANCEA pdidoi,
633 FIXME("(this=%p,%p,%d,0x%08x): stub!\n",
634 iface, pdidoi, dwObj, dwHow);
639 HRESULT WINAPI IDirectInputDevice2WImpl_GetObjectInfo(
640 LPDIRECTINPUTDEVICE8W iface,
641 LPDIDEVICEOBJECTINSTANCEW pdidoi,
645 FIXME("(this=%p,%p,%d,0x%08x): stub!\n",
646 iface, pdidoi, dwObj, dwHow);
651 HRESULT WINAPI IDirectInputDevice2AImpl_GetDeviceInfo(
652 LPDIRECTINPUTDEVICE8A iface,
653 LPDIDEVICEINSTANCEA pdidi)
655 FIXME("(this=%p,%p): stub!\n",
661 HRESULT WINAPI IDirectInputDevice2WImpl_GetDeviceInfo(
662 LPDIRECTINPUTDEVICE8W iface,
663 LPDIDEVICEINSTANCEW pdidi)
665 FIXME("(this=%p,%p): stub!\n",
671 HRESULT WINAPI IDirectInputDevice2AImpl_RunControlPanel(
672 LPDIRECTINPUTDEVICE8A iface,
676 FIXME("(this=%p,%p,0x%08x): stub!\n",
677 iface, hwndOwner, dwFlags);
682 HRESULT WINAPI IDirectInputDevice2AImpl_Initialize(
683 LPDIRECTINPUTDEVICE8A iface,
688 FIXME("(this=%p,%p,%d,%s): stub!\n",
689 iface, hinst, dwVersion, debugstr_guid(rguid));
693 /******************************************************************************
694 * IDirectInputDevice2A
697 HRESULT WINAPI IDirectInputDevice2AImpl_CreateEffect(
698 LPDIRECTINPUTDEVICE8A iface,
701 LPDIRECTINPUTEFFECT *ppdef,
704 FIXME("(this=%p,%s,%p,%p,%p): stub!\n",
705 iface, debugstr_guid(rguid), lpeff, ppdef, pUnkOuter);
709 HRESULT WINAPI IDirectInputDevice2AImpl_EnumEffects(
710 LPDIRECTINPUTDEVICE8A iface,
711 LPDIENUMEFFECTSCALLBACKA lpCallback,
715 FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
716 iface, lpCallback, lpvRef, dwFlags);
721 HRESULT WINAPI IDirectInputDevice2WImpl_EnumEffects(
722 LPDIRECTINPUTDEVICE8W iface,
723 LPDIENUMEFFECTSCALLBACKW lpCallback,
727 FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
728 iface, lpCallback, lpvRef, dwFlags);
733 HRESULT WINAPI IDirectInputDevice2AImpl_GetEffectInfo(
734 LPDIRECTINPUTDEVICE8A iface,
735 LPDIEFFECTINFOA lpdei,
738 FIXME("(this=%p,%p,%s): stub!\n",
739 iface, lpdei, debugstr_guid(rguid));
743 HRESULT WINAPI IDirectInputDevice2WImpl_GetEffectInfo(
744 LPDIRECTINPUTDEVICE8W iface,
745 LPDIEFFECTINFOW lpdei,
748 FIXME("(this=%p,%p,%s): stub!\n",
749 iface, lpdei, debugstr_guid(rguid));
753 HRESULT WINAPI IDirectInputDevice2AImpl_GetForceFeedbackState(
754 LPDIRECTINPUTDEVICE8A iface,
757 FIXME("(this=%p,%p): stub!\n",
762 HRESULT WINAPI IDirectInputDevice2AImpl_SendForceFeedbackCommand(
763 LPDIRECTINPUTDEVICE8A iface,
766 FIXME("(this=%p,0x%08x): stub!\n",
771 HRESULT WINAPI IDirectInputDevice2AImpl_EnumCreatedEffectObjects(
772 LPDIRECTINPUTDEVICE8A iface,
773 LPDIENUMCREATEDEFFECTOBJECTSCALLBACK lpCallback,
777 FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
778 iface, lpCallback, lpvRef, dwFlags);
782 HRESULT WINAPI IDirectInputDevice2AImpl_Escape(
783 LPDIRECTINPUTDEVICE8A iface,
784 LPDIEFFESCAPE lpDIEEsc)
786 FIXME("(this=%p,%p): stub!\n",
791 HRESULT WINAPI IDirectInputDevice2AImpl_Poll(
792 LPDIRECTINPUTDEVICE8A iface)
794 /* Because wine devices do not need to be polled, just return DI_NOEFFECT */
798 HRESULT WINAPI IDirectInputDevice2AImpl_SendDeviceData(
799 LPDIRECTINPUTDEVICE8A iface,
801 LPCDIDEVICEOBJECTDATA rgdod,
805 FIXME("(this=%p,0x%08x,%p,%p,0x%08x): stub!\n",
806 iface, cbObjectData, rgdod, pdwInOut, dwFlags);
811 HRESULT WINAPI IDirectInputDevice7AImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8A iface,
813 LPDIENUMEFFECTSINFILECALLBACK pec,
817 FIXME("(%p)->(%s,%p,%p,%08x): stub !\n", iface, lpszFileName, pec, pvRef, dwFlags);
822 HRESULT WINAPI IDirectInputDevice7WImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8W iface,
823 LPCWSTR lpszFileName,
824 LPDIENUMEFFECTSINFILECALLBACK pec,
828 FIXME("(%p)->(%s,%p,%p,%08x): stub !\n", iface, debugstr_w(lpszFileName), pec, pvRef, dwFlags);
833 HRESULT WINAPI IDirectInputDevice7AImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8A iface,
836 LPDIFILEEFFECT rgDiFileEft,
839 FIXME("(%p)->(%s,%08x,%p,%08x): stub !\n", iface, lpszFileName, dwEntries, rgDiFileEft, dwFlags);
844 HRESULT WINAPI IDirectInputDevice7WImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8W iface,
845 LPCWSTR lpszFileName,
847 LPDIFILEEFFECT rgDiFileEft,
850 FIXME("(%p)->(%s,%08x,%p,%08x): stub !\n", iface, debugstr_w(lpszFileName), dwEntries, rgDiFileEft, dwFlags);
855 HRESULT WINAPI IDirectInputDevice8AImpl_BuildActionMap(LPDIRECTINPUTDEVICE8A iface,
856 LPDIACTIONFORMATA lpdiaf,
860 FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, lpszUserName, dwFlags);
865 HRESULT WINAPI IDirectInputDevice8WImpl_BuildActionMap(LPDIRECTINPUTDEVICE8W iface,
866 LPDIACTIONFORMATW lpdiaf,
867 LPCWSTR lpszUserName,
870 FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
875 HRESULT WINAPI IDirectInputDevice8AImpl_SetActionMap(LPDIRECTINPUTDEVICE8A iface,
876 LPDIACTIONFORMATA lpdiaf,
880 FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, lpszUserName, dwFlags);
885 HRESULT WINAPI IDirectInputDevice8WImpl_SetActionMap(LPDIRECTINPUTDEVICE8W iface,
886 LPDIACTIONFORMATW lpdiaf,
887 LPCWSTR lpszUserName,
890 FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
895 HRESULT WINAPI IDirectInputDevice8AImpl_GetImageInfo(LPDIRECTINPUTDEVICE8A iface,
896 LPDIDEVICEIMAGEINFOHEADERA lpdiDevImageInfoHeader)
898 FIXME("(%p)->(%p): stub !\n", iface, lpdiDevImageInfoHeader);
903 HRESULT WINAPI IDirectInputDevice8WImpl_GetImageInfo(LPDIRECTINPUTDEVICE8W iface,
904 LPDIDEVICEIMAGEINFOHEADERW lpdiDevImageInfoHeader)
906 FIXME("(%p)->(%p): stub !\n", iface, lpdiDevImageInfoHeader);