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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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"
37 #include "device_private.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(dinput);
41 /******************************************************************************
42 * Various debugging tools
44 void _dump_cooperativelevel_DI(DWORD dwFlags) {
45 if (TRACE_ON(dinput)) {
51 #define FE(x) { x, #x}
55 FE(DISCL_NONEXCLUSIVE)
58 for (i = 0; i < (sizeof(flags) / sizeof(flags[0])); i++)
59 if (flags[i].mask & dwFlags)
60 DPRINTF("%s ",flags[i].name);
65 void _dump_EnumObjects_flags(DWORD dwFlags) {
66 if (TRACE_ON(dinput)) {
73 #define FE(x) { x, #x}
82 FE(DIDFT_FFEFFECTTRIGGER),
84 FE(DIDFT_VENDORDEFINED),
89 type = (dwFlags & 0xFF0000FF);
90 instance = ((dwFlags >> 8) & 0xFFFF);
92 if (type == DIDFT_ALL) {
93 DPRINTF(" DIDFT_ALL");
95 for (i = 0; i < (sizeof(flags) / sizeof(flags[0])); i++) {
96 if (flags[i].mask & type) {
97 type &= ~flags[i].mask;
98 DPRINTF(" %s",flags[i].name);
102 DPRINTF(" (unhandled: %08lx)", type);
105 DPRINTF(" / Instance: ");
106 if (instance == ((DIDFT_ANYINSTANCE >> 8) & 0xFFFF)) {
107 DPRINTF("DIDFT_ANYINSTANCE");
109 DPRINTF("%3ld", instance);
114 void _dump_DIPROPHEADER(LPCDIPROPHEADER diph) {
115 if (TRACE_ON(dinput)) {
116 DPRINTF(" - dwObj = 0x%08lx\n", diph->dwObj);
117 DPRINTF(" - dwHow = %s\n",
118 ((diph->dwHow == DIPH_DEVICE) ? "DIPH_DEVICE" :
119 ((diph->dwHow == DIPH_BYOFFSET) ? "DIPH_BYOFFSET" :
120 ((diph->dwHow == DIPH_BYID)) ? "DIPH_BYID" : "unknown")));
124 void _dump_OBJECTINSTANCEA(DIDEVICEOBJECTINSTANCEA *ddoi) {
125 if (TRACE_ON(dinput)) {
126 DPRINTF(" - enumerating : %s ('%s') - %2ld - 0x%08lx - %s\n",
127 debugstr_guid(&ddoi->guidType), _dump_dinput_GUID(&ddoi->guidType), ddoi->dwOfs, ddoi->dwType, ddoi->tszName);
131 void _dump_OBJECTINSTANCEW(DIDEVICEOBJECTINSTANCEW *ddoi) {
132 if (TRACE_ON(dinput)) {
133 DPRINTF(" - enumerating : %s ('%s'), - %2ld - 0x%08lx - %s\n",
134 debugstr_guid(&ddoi->guidType), _dump_dinput_GUID(&ddoi->guidType), ddoi->dwOfs, ddoi->dwType, debugstr_w(ddoi->tszName));
138 /* This function is a helper to convert a GUID into any possible DInput GUID out there */
139 const char *_dump_dinput_GUID(const GUID *guid) {
141 static const struct {
145 #define FE(x) { &x, #x}
158 FE(GUID_SysKeyboard),
160 FE(GUID_ConstantForce),
166 FE(GUID_SawtoothDown),
176 for (i = 0; i < (sizeof(guids) / sizeof(guids[0])); i++) {
177 if (IsEqualGUID(guids[i].guid, guid)) {
178 return guids[i].name;
181 return "Unknown GUID";
184 void _dump_DIDATAFORMAT(const DIDATAFORMAT *df) {
187 TRACE("Dumping DIDATAFORMAT structure:\n");
188 TRACE(" - dwSize: %ld\n", df->dwSize);
189 if (df->dwSize != sizeof(DIDATAFORMAT)) {
190 WARN("Non-standard DIDATAFORMAT structure size (%ld instead of %d).\n", df->dwSize, sizeof(DIDATAFORMAT));
192 TRACE(" - dwObjsize: %ld\n", df->dwObjSize);
193 if (df->dwObjSize != sizeof(DIOBJECTDATAFORMAT)) {
194 WARN("Non-standard DIOBJECTDATAFORMAT structure size (%ld instead of %d).\n", df->dwObjSize, sizeof(DIOBJECTDATAFORMAT));
196 TRACE(" - dwFlags: 0x%08lx (", df->dwFlags);
197 switch (df->dwFlags) {
198 case DIDF_ABSAXIS: TRACE("DIDF_ABSAXIS"); break;
199 case DIDF_RELAXIS: TRACE("DIDF_RELAXIS"); break;
200 default: TRACE("unknown"); break;
203 TRACE(" - dwDataSize: %ld\n", df->dwDataSize);
204 TRACE(" - dwNumObjs: %ld\n", df->dwNumObjs);
206 for (i = 0; i < df->dwNumObjs; i++) {
207 TRACE(" - Object %d:\n", i);
208 TRACE(" * GUID: %s ('%s')\n", debugstr_guid(df->rgodf[i].pguid), _dump_dinput_GUID(df->rgodf[i].pguid));
209 TRACE(" * dwOfs: %ld\n", df->rgodf[i].dwOfs);
210 TRACE(" * dwType: 0x%08lx\n", df->rgodf[i].dwType);
211 TRACE(" "); _dump_EnumObjects_flags(df->rgodf[i].dwType); TRACE("\n");
212 TRACE(" * dwFlags: 0x%08lx\n", df->rgodf[i].dwFlags);
216 /* Conversion between internal data buffer and external data buffer */
217 void fill_DataFormat(void *out, const void *in, DataFormat *df) {
219 char *in_c = (char *) in;
220 char *out_c = (char *) out;
222 if (df->dt == NULL) {
223 /* This means that the app uses Wine's internal data format */
224 memcpy(out, in, df->internal_format_size);
226 for (i = 0; i < df->size; i++) {
227 if (df->dt[i].offset_in >= 0) {
228 switch (df->dt[i].size) {
230 TRACE("Copying (c) to %d from %d (value %d)\n",
231 df->dt[i].offset_out, df->dt[i].offset_in, *((char *) (in_c + df->dt[i].offset_in)));
232 *((char *) (out_c + df->dt[i].offset_out)) = *((char *) (in_c + df->dt[i].offset_in));
236 TRACE("Copying (s) to %d from %d (value %d)\n",
237 df->dt[i].offset_out, df->dt[i].offset_in, *((short *) (in_c + df->dt[i].offset_in)));
238 *((short *) (out_c + df->dt[i].offset_out)) = *((short *) (in_c + df->dt[i].offset_in));
242 TRACE("Copying (i) to %d from %d (value %d)\n",
243 df->dt[i].offset_out, df->dt[i].offset_in, *((int *) (in_c + df->dt[i].offset_in)));
244 *((int *) (out_c + df->dt[i].offset_out)) = *((int *) (in_c + df->dt[i].offset_in));
248 memcpy((out_c + df->dt[i].offset_out), (in_c + df->dt[i].offset_in), df->dt[i].size);
252 switch (df->dt[i].size) {
254 TRACE("Copying (c) to %d default value %d\n",
255 df->dt[i].offset_out, df->dt[i].value);
256 *((char *) (out_c + df->dt[i].offset_out)) = (char) df->dt[i].value;
260 TRACE("Copying (s) to %d default value %d\n",
261 df->dt[i].offset_out, df->dt[i].value);
262 *((short *) (out_c + df->dt[i].offset_out)) = (short) df->dt[i].value;
266 TRACE("Copying (i) to %d default value %d\n",
267 df->dt[i].offset_out, df->dt[i].value);
268 *((int *) (out_c + df->dt[i].offset_out)) = (int) df->dt[i].value;
272 memset((out_c + df->dt[i].offset_out), df->dt[i].size, 0);
280 void release_DataFormat(DataFormat * format)
282 TRACE("Deleting DataTransform : \n");
284 HeapFree(GetProcessHeap(), 0, format->dt);
287 DataFormat *create_DataFormat(const DIDATAFORMAT *wine_format, LPCDIDATAFORMAT asked_format, int *offset) {
296 ret = HeapAlloc(GetProcessHeap(), 0, sizeof(DataFormat));
298 done = HeapAlloc(GetProcessHeap(), 0, sizeof(int) * asked_format->dwNumObjs);
299 memset(done, 0, sizeof(int) * asked_format->dwNumObjs);
301 dt = HeapAlloc(GetProcessHeap(), 0, asked_format->dwNumObjs * sizeof(DataTransform));
303 TRACE("Creating DataTransform : \n");
305 for (i = 0; i < wine_format->dwNumObjs; i++) {
308 for (j = 0; j < asked_format->dwNumObjs; j++) {
312 if (/* Check if the application either requests any GUID and if not, it if matches
313 * the GUID of the Wine object.
315 ((asked_format->rgodf[j].pguid == NULL) ||
316 (IsEqualGUID(wine_format->rgodf[i].pguid, asked_format->rgodf[j].pguid)))
318 (/* Then check if it accepts any instance id, and if not, if it matches Wine's
321 (DIDFT_GETINSTANCE(asked_format->rgodf[j].dwType) == 0xFFFF) ||
322 (DIDFT_GETINSTANCE(asked_format->rgodf[j].dwType) == 0x00FF) || /* This is mentionned in no DX docs, but it works fine - tested on WinXP */
323 (DIDFT_GETINSTANCE(asked_format->rgodf[j].dwType) == DIDFT_GETINSTANCE(wine_format->rgodf[i].dwType)))
325 ( /* Then if the asked type matches the one Wine provides */
326 wine_format->rgodf[i].dwType & asked_format->rgodf[j].dwType)) {
330 TRACE("Matching : \n");
331 TRACE(" - Asked (%d) :\n", j);
332 TRACE(" * GUID: %s ('%s')\n",
333 debugstr_guid(asked_format->rgodf[j].pguid),
334 _dump_dinput_GUID(asked_format->rgodf[j].pguid));
335 TRACE(" * Offset: %3ld\n", asked_format->rgodf[j].dwOfs);
336 TRACE(" * dwType: %08lx\n", asked_format->rgodf[j].dwType);
337 TRACE(" "); _dump_EnumObjects_flags(asked_format->rgodf[j].dwType); TRACE("\n");
339 TRACE(" - Wine (%d) :\n", j);
340 TRACE(" * GUID: %s ('%s')\n",
341 debugstr_guid(wine_format->rgodf[j].pguid),
342 _dump_dinput_GUID(wine_format->rgodf[j].pguid));
343 TRACE(" * Offset: %3ld\n", wine_format->rgodf[j].dwOfs);
344 TRACE(" * dwType: %08lx\n", wine_format->rgodf[j].dwType);
345 TRACE(" "); _dump_EnumObjects_flags(wine_format->rgodf[j].dwType); TRACE("\n");
347 if (wine_format->rgodf[i].dwType & DIDFT_BUTTON)
348 dt[index].size = sizeof(BYTE);
350 dt[index].size = sizeof(DWORD);
351 dt[index].offset_in = wine_format ->rgodf[i].dwOfs;
352 if (asked_format->rgodf[j].dwOfs < next) {
353 WARN("bad format: dwOfs=%ld, changing to %ld\n", asked_format->rgodf[j].dwOfs, next);
354 dt[index].offset_out = next;
357 dt[index].offset_out = asked_format->rgodf[j].dwOfs;
358 offset[i] = asked_format->rgodf[j].dwOfs;
361 next = next + dt[index].size;
363 if (wine_format->rgodf[i].dwOfs != dt[index].offset_out)
371 if (j == asked_format->dwNumObjs)
375 TRACE("Setting to default value :\n");
376 for (j = 0; j < asked_format->dwNumObjs; j++) {
378 TRACE(" - Asked (%d) :\n", j);
379 TRACE(" * GUID: %s ('%s')\n",
380 debugstr_guid(asked_format->rgodf[j].pguid),
381 _dump_dinput_GUID(asked_format->rgodf[j].pguid));
382 TRACE(" * Offset: %3ld\n", asked_format->rgodf[j].dwOfs);
383 TRACE(" * dwType: %08lx\n", asked_format->rgodf[j].dwType);
384 TRACE(" "); _dump_EnumObjects_flags(asked_format->rgodf[j].dwType); TRACE("\n");
386 if (asked_format->rgodf[j].dwType & DIDFT_BUTTON)
387 dt[index].size = sizeof(BYTE);
389 dt[index].size = sizeof(DWORD);
390 dt[index].offset_in = -1;
391 dt[index].offset_out = asked_format->rgodf[j].dwOfs;
399 ret->internal_format_size = wine_format->dwDataSize;
403 HeapFree(GetProcessHeap(), 0, dt);
408 HeapFree(GetProcessHeap(), 0, done);
413 BOOL DIEnumDevicesCallbackAtoW(LPCDIDEVICEOBJECTINSTANCEA lpddi, LPVOID lpvRef) {
414 DIDEVICEOBJECTINSTANCEW ddtmp;
415 device_enumobjects_AtoWcb_data* data;
417 data = (device_enumobjects_AtoWcb_data*) lpvRef;
419 memset(&ddtmp, 0, sizeof(ddtmp));
421 ddtmp.dwSize = sizeof(DIDEVICEINSTANCEW);
422 ddtmp.guidType = lpddi->guidType;
423 ddtmp.dwOfs = lpddi->dwOfs;
424 ddtmp.dwType = lpddi->dwType;
425 ddtmp.dwFlags = lpddi->dwFlags;
426 MultiByteToWideChar(CP_ACP, 0, lpddi->tszName, -1, ddtmp.tszName, MAX_PATH);
428 if (lpddi->dwSize == sizeof(DIDEVICEINSTANCEA)) {
430 * if dwSize < sizeof(DIDEVICEINSTANCEA of DInput version >= 5)
431 * force feedback and other newer datas aren't available
433 ddtmp.dwFFMaxForce = lpddi->dwFFMaxForce;
434 ddtmp.dwFFForceResolution = lpddi->dwFFForceResolution;
435 ddtmp.wCollectionNumber = lpddi->wCollectionNumber;
436 ddtmp.wDesignatorIndex = lpddi->wDesignatorIndex;
437 ddtmp.wUsagePage = lpddi->wUsagePage;
438 ddtmp.wUsage = lpddi->wUsage;
439 ddtmp.dwDimension = lpddi->dwDimension;
440 ddtmp.wExponent = lpddi->wExponent;
441 ddtmp.wReserved = lpddi->wReserved;
443 return data->lpCallBack(&ddtmp, data->lpvRef);
446 /******************************************************************************
447 * IDirectInputDeviceA
450 HRESULT WINAPI IDirectInputDevice2AImpl_SetDataFormat(
451 LPDIRECTINPUTDEVICE8A iface,LPCDIDATAFORMAT df
453 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
455 TRACE("(this=%p,%p)\n",This,df);
457 _dump_DIDATAFORMAT(df);
462 HRESULT WINAPI IDirectInputDevice2AImpl_SetCooperativeLevel(
463 LPDIRECTINPUTDEVICE8A iface,HWND hwnd,DWORD dwflags
465 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
466 TRACE("(this=%p,0x%08lx,0x%08lx)\n",This,(DWORD)hwnd,dwflags);
467 if (TRACE_ON(dinput)) {
468 TRACE(" cooperative level : ");
469 _dump_cooperativelevel_DI(dwflags);
474 HRESULT WINAPI IDirectInputDevice2AImpl_SetEventNotification(
475 LPDIRECTINPUTDEVICE8A iface,HANDLE hnd
477 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
478 FIXME("(this=%p,0x%08lx): stub\n",This,(DWORD)hnd);
482 ULONG WINAPI IDirectInputDevice2AImpl_Release(LPDIRECTINPUTDEVICE8A iface)
484 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
486 ref = InterlockedDecrement(&(This->ref));
488 HeapFree(GetProcessHeap(),0,This);
492 HRESULT WINAPI IDirectInputDevice2AImpl_QueryInterface(
493 LPDIRECTINPUTDEVICE8A iface,REFIID riid,LPVOID *ppobj
496 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
498 TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
499 if (IsEqualGUID(&IID_IUnknown,riid)) {
500 IDirectInputDevice2_AddRef(iface);
504 if (IsEqualGUID(&IID_IDirectInputDeviceA,riid)) {
505 IDirectInputDevice2_AddRef(iface);
509 if (IsEqualGUID(&IID_IDirectInputDevice2A,riid)) {
510 IDirectInputDevice2_AddRef(iface);
514 if (IsEqualGUID(&IID_IDirectInputDevice7A,riid)) {
515 IDirectInputDevice7_AddRef(iface);
519 TRACE("Unsupported interface !\n");
523 HRESULT WINAPI IDirectInputDevice2WImpl_QueryInterface(
524 LPDIRECTINPUTDEVICE8W iface,REFIID riid,LPVOID *ppobj
527 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
529 TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
530 if (IsEqualGUID(&IID_IUnknown,riid)) {
531 IDirectInputDevice2_AddRef(iface);
535 if (IsEqualGUID(&IID_IDirectInputDeviceW,riid)) {
536 IDirectInputDevice2_AddRef(iface);
540 if (IsEqualGUID(&IID_IDirectInputDevice2W,riid)) {
541 IDirectInputDevice2_AddRef(iface);
545 if (IsEqualGUID(&IID_IDirectInputDevice7W,riid)) {
546 IDirectInputDevice7_AddRef(iface);
550 TRACE("Unsupported interface !\n");
554 ULONG WINAPI IDirectInputDevice2AImpl_AddRef(
555 LPDIRECTINPUTDEVICE8A iface)
557 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
558 return InterlockedIncrement(&(This->ref));
561 HRESULT WINAPI IDirectInputDevice2AImpl_EnumObjects(
562 LPDIRECTINPUTDEVICE8A iface,
563 LPDIENUMDEVICEOBJECTSCALLBACKA lpCallback,
567 FIXME("(this=%p,%p,%p,%08lx): stub!\n", iface, lpCallback, lpvRef, dwFlags);
568 if (TRACE_ON(dinput)) {
569 DPRINTF(" - flags = ");
570 _dump_EnumObjects_flags(dwFlags);
577 HRESULT WINAPI IDirectInputDevice2WImpl_EnumObjects(
578 LPDIRECTINPUTDEVICE8W iface,
579 LPDIENUMDEVICEOBJECTSCALLBACKW lpCallback,
583 FIXME("(this=%p,%p,%p,%08lx): stub!\n", iface, lpCallback, lpvRef, dwFlags);
584 if (TRACE_ON(dinput)) {
585 DPRINTF(" - flags = ");
586 _dump_EnumObjects_flags(dwFlags);
593 HRESULT WINAPI IDirectInputDevice2AImpl_GetProperty(
594 LPDIRECTINPUTDEVICE8A iface,
596 LPDIPROPHEADER pdiph)
598 FIXME("(this=%p,%s,%p): stub!\n",
599 iface, debugstr_guid(rguid), pdiph);
601 if (TRACE_ON(dinput))
602 _dump_DIPROPHEADER(pdiph);
607 HRESULT WINAPI IDirectInputDevice2AImpl_GetObjectInfo(
608 LPDIRECTINPUTDEVICE8A iface,
609 LPDIDEVICEOBJECTINSTANCEA pdidoi,
613 FIXME("(this=%p,%p,%ld,0x%08lx): stub!\n",
614 iface, pdidoi, dwObj, dwHow);
619 HRESULT WINAPI IDirectInputDevice2WImpl_GetObjectInfo(
620 LPDIRECTINPUTDEVICE8W iface,
621 LPDIDEVICEOBJECTINSTANCEW pdidoi,
625 FIXME("(this=%p,%p,%ld,0x%08lx): stub!\n",
626 iface, pdidoi, dwObj, dwHow);
631 HRESULT WINAPI IDirectInputDevice2AImpl_GetDeviceInfo(
632 LPDIRECTINPUTDEVICE8A iface,
633 LPDIDEVICEINSTANCEA pdidi)
635 FIXME("(this=%p,%p): stub!\n",
641 HRESULT WINAPI IDirectInputDevice2WImpl_GetDeviceInfo(
642 LPDIRECTINPUTDEVICE8W iface,
643 LPDIDEVICEINSTANCEW pdidi)
645 FIXME("(this=%p,%p): stub!\n",
651 HRESULT WINAPI IDirectInputDevice2AImpl_RunControlPanel(
652 LPDIRECTINPUTDEVICE8A iface,
656 FIXME("(this=%p,%p,0x%08lx): stub!\n",
657 iface, hwndOwner, dwFlags);
662 HRESULT WINAPI IDirectInputDevice2AImpl_Initialize(
663 LPDIRECTINPUTDEVICE8A iface,
668 FIXME("(this=%p,%p,%ld,%s): stub!\n",
669 iface, hinst, dwVersion, debugstr_guid(rguid));
673 /******************************************************************************
674 * IDirectInputDevice2A
677 HRESULT WINAPI IDirectInputDevice2AImpl_CreateEffect(
678 LPDIRECTINPUTDEVICE8A iface,
681 LPDIRECTINPUTEFFECT *ppdef,
684 FIXME("(this=%p,%s,%p,%p,%p): stub!\n",
685 iface, debugstr_guid(rguid), lpeff, ppdef, pUnkOuter);
689 HRESULT WINAPI IDirectInputDevice2AImpl_EnumEffects(
690 LPDIRECTINPUTDEVICE8A iface,
691 LPDIENUMEFFECTSCALLBACKA lpCallback,
695 FIXME("(this=%p,%p,%p,0x%08lx): stub!\n",
696 iface, lpCallback, lpvRef, dwFlags);
701 HRESULT WINAPI IDirectInputDevice2WImpl_EnumEffects(
702 LPDIRECTINPUTDEVICE8W iface,
703 LPDIENUMEFFECTSCALLBACKW lpCallback,
707 FIXME("(this=%p,%p,%p,0x%08lx): stub!\n",
708 iface, lpCallback, lpvRef, dwFlags);
713 HRESULT WINAPI IDirectInputDevice2AImpl_GetEffectInfo(
714 LPDIRECTINPUTDEVICE8A iface,
715 LPDIEFFECTINFOA lpdei,
718 FIXME("(this=%p,%p,%s): stub!\n",
719 iface, lpdei, debugstr_guid(rguid));
723 HRESULT WINAPI IDirectInputDevice2WImpl_GetEffectInfo(
724 LPDIRECTINPUTDEVICE8W iface,
725 LPDIEFFECTINFOW lpdei,
728 FIXME("(this=%p,%p,%s): stub!\n",
729 iface, lpdei, debugstr_guid(rguid));
733 HRESULT WINAPI IDirectInputDevice2AImpl_GetForceFeedbackState(
734 LPDIRECTINPUTDEVICE8A iface,
737 FIXME("(this=%p,%p): stub!\n",
742 HRESULT WINAPI IDirectInputDevice2AImpl_SendForceFeedbackCommand(
743 LPDIRECTINPUTDEVICE8A iface,
746 FIXME("(this=%p,0x%08lx): stub!\n",
751 HRESULT WINAPI IDirectInputDevice2AImpl_EnumCreatedEffectObjects(
752 LPDIRECTINPUTDEVICE8A iface,
753 LPDIENUMCREATEDEFFECTOBJECTSCALLBACK lpCallback,
757 FIXME("(this=%p,%p,%p,0x%08lx): stub!\n",
758 iface, lpCallback, lpvRef, dwFlags);
760 lpCallback(NULL, lpvRef);
764 HRESULT WINAPI IDirectInputDevice2AImpl_Escape(
765 LPDIRECTINPUTDEVICE8A iface,
766 LPDIEFFESCAPE lpDIEEsc)
768 FIXME("(this=%p,%p): stub!\n",
773 HRESULT WINAPI IDirectInputDevice2AImpl_Poll(
774 LPDIRECTINPUTDEVICE8A iface)
776 /* Because wine devices do not need to be polled, just return DI_NOEFFECT */
780 HRESULT WINAPI IDirectInputDevice2AImpl_SendDeviceData(
781 LPDIRECTINPUTDEVICE8A iface,
783 LPCDIDEVICEOBJECTDATA rgdod,
787 FIXME("(this=%p,0x%08lx,%p,%p,0x%08lx): stub!\n",
788 iface, cbObjectData, rgdod, pdwInOut, dwFlags);
793 HRESULT WINAPI IDirectInputDevice7AImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8A iface,
795 LPDIENUMEFFECTSINFILECALLBACK pec,
799 FIXME("(%p)->(%s,%p,%p,%08lx): stub !\n", iface, lpszFileName, pec, pvRef, dwFlags);
804 HRESULT WINAPI IDirectInputDevice7WImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8W iface,
805 LPCWSTR lpszFileName,
806 LPDIENUMEFFECTSINFILECALLBACK pec,
810 FIXME("(%p)->(%s,%p,%p,%08lx): stub !\n", iface, debugstr_w(lpszFileName), pec, pvRef, dwFlags);
815 HRESULT WINAPI IDirectInputDevice7AImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8A iface,
818 LPDIFILEEFFECT rgDiFileEft,
821 FIXME("(%p)->(%s,%08lx,%p,%08lx): stub !\n", iface, lpszFileName, dwEntries, rgDiFileEft, dwFlags);
826 HRESULT WINAPI IDirectInputDevice7WImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8W iface,
827 LPCWSTR lpszFileName,
829 LPDIFILEEFFECT rgDiFileEft,
832 FIXME("(%p)->(%s,%08lx,%p,%08lx): stub !\n", iface, debugstr_w(lpszFileName), dwEntries, rgDiFileEft, dwFlags);
837 HRESULT WINAPI IDirectInputDevice8AImpl_BuildActionMap(LPDIRECTINPUTDEVICE8A iface,
838 LPDIACTIONFORMATA lpdiaf,
842 FIXME("(%p)->(%p,%s,%08lx): stub !\n", iface, lpdiaf, lpszUserName, dwFlags);
847 HRESULT WINAPI IDirectInputDevice8WImpl_BuildActionMap(LPDIRECTINPUTDEVICE8W iface,
848 LPDIACTIONFORMATW lpdiaf,
849 LPCWSTR lpszUserName,
852 FIXME("(%p)->(%p,%s,%08lx): stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
857 HRESULT WINAPI IDirectInputDevice8AImpl_SetActionMap(LPDIRECTINPUTDEVICE8A iface,
858 LPDIACTIONFORMATA lpdiaf,
862 FIXME("(%p)->(%p,%s,%08lx): stub !\n", iface, lpdiaf, lpszUserName, dwFlags);
867 HRESULT WINAPI IDirectInputDevice8WImpl_SetActionMap(LPDIRECTINPUTDEVICE8W iface,
868 LPDIACTIONFORMATW lpdiaf,
869 LPCWSTR lpszUserName,
872 FIXME("(%p)->(%p,%s,%08lx): stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
877 HRESULT WINAPI IDirectInputDevice8AImpl_GetImageInfo(LPDIRECTINPUTDEVICE8A iface,
878 LPDIDEVICEIMAGEINFOHEADERA lpdiDevImageInfoHeader)
880 FIXME("(%p)->(%p): stub !\n", iface, lpdiDevImageInfoHeader);
885 HRESULT WINAPI IDirectInputDevice8WImpl_GetImageInfo(LPDIRECTINPUTDEVICE8W iface,
886 LPDIDEVICEIMAGEINFOHEADERW lpdiDevImageInfoHeader)
888 FIXME("(%p)->(%p): stub !\n", iface, lpdiDevImageInfoHeader);