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
),
86 type
= (dwFlags
& 0xFF0000FF);
87 instance
= ((dwFlags
>> 8) & 0xFFFF);
89 if (type
== DIDFT_ALL
) {
90 DPRINTF(" DIDFT_ALL");
92 for (i
= 0; i
< (sizeof(flags
) / sizeof(flags
[0])); i
++) {
93 if (flags
[i
].mask
& type
) {
94 type
&= ~flags
[i
].mask
;
95 DPRINTF(" %s",flags
[i
].name
);
99 DPRINTF(" (unhandled: %08lx)", type
);
102 DPRINTF(" / Instance: ");
103 if (instance
== ((DIDFT_ANYINSTANCE
>> 8) & 0xFFFF)) {
104 DPRINTF("DIDFT_ANYINSTANCE");
106 DPRINTF("%3ld", instance
);
111 void _dump_DIPROPHEADER(LPCDIPROPHEADER diph
) {
112 if (TRACE_ON(dinput
)) {
113 DPRINTF(" - dwObj = 0x%08lx\n", diph
->dwObj
);
114 DPRINTF(" - dwHow = %s\n",
115 ((diph
->dwHow
== DIPH_DEVICE
) ? "DIPH_DEVICE" :
116 ((diph
->dwHow
== DIPH_BYOFFSET
) ? "DIPH_BYOFFSET" :
117 ((diph
->dwHow
== DIPH_BYID
)) ? "DIPH_BYID" : "unknown")));
121 void _dump_OBJECTINSTANCEA(DIDEVICEOBJECTINSTANCEA
*ddoi
) {
122 if (TRACE_ON(dinput
)) {
123 DPRINTF(" - enumerating : %s ('%s') - %2ld - 0x%08lx - %s\n",
124 debugstr_guid(&ddoi
->guidType
), _dump_dinput_GUID(&ddoi
->guidType
), ddoi
->dwOfs
, ddoi
->dwType
, ddoi
->tszName
);
128 void _dump_OBJECTINSTANCEW(DIDEVICEOBJECTINSTANCEW
*ddoi
) {
129 if (TRACE_ON(dinput
)) {
130 DPRINTF(" - enumerating : %s ('%s'), - %2ld - 0x%08lx - %s\n",
131 debugstr_guid(&ddoi
->guidType
), _dump_dinput_GUID(&ddoi
->guidType
), ddoi
->dwOfs
, ddoi
->dwType
, debugstr_w(ddoi
->tszName
));
135 /* This function is a helper to convert a GUID into any possible DInput GUID out there */
136 const char *_dump_dinput_GUID(const GUID
*guid
) {
138 static const struct {
142 #define FE(x) { &x, #x}
155 FE(GUID_SysKeyboard
),
157 FE(GUID_ConstantForce
),
163 FE(GUID_SawtoothDown
),
173 for (i
= 0; i
< (sizeof(guids
) / sizeof(guids
[0])); i
++) {
174 if (IsEqualGUID(guids
[i
].guid
, guid
)) {
175 return guids
[i
].name
;
178 return "Unknown GUID";
181 void _dump_DIDATAFORMAT(const DIDATAFORMAT
*df
) {
184 TRACE("Dumping DIDATAFORMAT structure:\n");
185 TRACE(" - dwSize: %ld\n", df
->dwSize
);
186 if (df
->dwSize
!= sizeof(DIDATAFORMAT
)) {
187 WARN("Non-standard DIDATAFORMAT structure size (%ld instead of %d).\n", df
->dwSize
, sizeof(DIDATAFORMAT
));
189 TRACE(" - dwObjsize: %ld\n", df
->dwObjSize
);
190 if (df
->dwObjSize
!= sizeof(DIOBJECTDATAFORMAT
)) {
191 WARN("Non-standard DIOBJECTDATAFORMAT structure size (%ld instead of %d).\n", df
->dwObjSize
, sizeof(DIOBJECTDATAFORMAT
));
193 TRACE(" - dwFlags: 0x%08lx (", df
->dwFlags
);
194 switch (df
->dwFlags
) {
195 case DIDF_ABSAXIS
: TRACE("DIDF_ABSAXIS"); break;
196 case DIDF_RELAXIS
: TRACE("DIDF_RELAXIS"); break;
197 default: TRACE("unknown"); break;
200 TRACE(" - dwDataSize: %ld\n", df
->dwDataSize
);
201 TRACE(" - dwNumObjs: %ld\n", df
->dwNumObjs
);
203 for (i
= 0; i
< df
->dwNumObjs
; i
++) {
204 TRACE(" - Object %d:\n", i
);
205 TRACE(" * GUID: %s ('%s')\n", debugstr_guid(df
->rgodf
[i
].pguid
), _dump_dinput_GUID(df
->rgodf
[i
].pguid
));
206 TRACE(" * dwOfs: %ld\n", df
->rgodf
[i
].dwOfs
);
207 TRACE(" * dwType: 0x%08lx\n", df
->rgodf
[i
].dwType
);
208 TRACE(" "); _dump_EnumObjects_flags(df
->rgodf
[i
].dwType
); TRACE("\n");
209 TRACE(" * dwFlags: 0x%08lx\n", df
->rgodf
[i
].dwFlags
);
213 /* Conversion between internal data buffer and external data buffer */
214 void fill_DataFormat(void *out
, const void *in
, DataFormat
*df
) {
216 char *in_c
= (char *) in
;
217 char *out_c
= (char *) out
;
219 if (df
->dt
== NULL
) {
220 /* This means that the app uses Wine's internal data format */
221 memcpy(out
, in
, df
->internal_format_size
);
223 for (i
= 0; i
< df
->size
; i
++) {
224 if (df
->dt
[i
].offset_in
>= 0) {
225 switch (df
->dt
[i
].size
) {
227 TRACE("Copying (c) to %d from %d (value %d)\n",
228 df
->dt
[i
].offset_out
, df
->dt
[i
].offset_in
, *((char *) (in_c
+ df
->dt
[i
].offset_in
)));
229 *((char *) (out_c
+ df
->dt
[i
].offset_out
)) = *((char *) (in_c
+ df
->dt
[i
].offset_in
));
233 TRACE("Copying (s) to %d from %d (value %d)\n",
234 df
->dt
[i
].offset_out
, df
->dt
[i
].offset_in
, *((short *) (in_c
+ df
->dt
[i
].offset_in
)));
235 *((short *) (out_c
+ df
->dt
[i
].offset_out
)) = *((short *) (in_c
+ df
->dt
[i
].offset_in
));
239 TRACE("Copying (i) to %d from %d (value %d)\n",
240 df
->dt
[i
].offset_out
, df
->dt
[i
].offset_in
, *((int *) (in_c
+ df
->dt
[i
].offset_in
)));
241 *((int *) (out_c
+ df
->dt
[i
].offset_out
)) = *((int *) (in_c
+ df
->dt
[i
].offset_in
));
245 memcpy((out_c
+ df
->dt
[i
].offset_out
), (in_c
+ df
->dt
[i
].offset_in
), df
->dt
[i
].size
);
249 switch (df
->dt
[i
].size
) {
251 TRACE("Copying (c) to %d default value %d\n",
252 df
->dt
[i
].offset_out
, df
->dt
[i
].value
);
253 *((char *) (out_c
+ df
->dt
[i
].offset_out
)) = (char) df
->dt
[i
].value
;
257 TRACE("Copying (s) to %d default value %d\n",
258 df
->dt
[i
].offset_out
, df
->dt
[i
].value
);
259 *((short *) (out_c
+ df
->dt
[i
].offset_out
)) = (short) df
->dt
[i
].value
;
263 TRACE("Copying (i) to %d default value %d\n",
264 df
->dt
[i
].offset_out
, df
->dt
[i
].value
);
265 *((int *) (out_c
+ df
->dt
[i
].offset_out
)) = (int) df
->dt
[i
].value
;
269 memset((out_c
+ df
->dt
[i
].offset_out
), df
->dt
[i
].size
, 0);
277 void release_DataFormat(DataFormat
* format
)
279 TRACE("Deleting DataTransform : \n");
281 HeapFree(GetProcessHeap(), 0, format
->dt
);
284 DataFormat
*create_DataFormat(const DIDATAFORMAT
*wine_format
, LPCDIDATAFORMAT asked_format
, int *offset
) {
293 ret
= (DataFormat
*) HeapAlloc(GetProcessHeap(), 0, sizeof(DataFormat
));
295 done
= (int *) HeapAlloc(GetProcessHeap(), 0, sizeof(int) * asked_format
->dwNumObjs
);
296 memset(done
, 0, sizeof(int) * asked_format
->dwNumObjs
);
298 dt
= (DataTransform
*) HeapAlloc(GetProcessHeap(), 0, asked_format
->dwNumObjs
* sizeof(DataTransform
));
300 TRACE("Creating DataTransform : \n");
302 for (i
= 0; i
< wine_format
->dwNumObjs
; i
++) {
305 for (j
= 0; j
< asked_format
->dwNumObjs
; j
++) {
309 if (/* Check if the application either requests any GUID and if not, it if matches
310 * the GUID of the Wine object.
312 ((asked_format
->rgodf
[j
].pguid
== NULL
) ||
313 (IsEqualGUID(wine_format
->rgodf
[i
].pguid
, asked_format
->rgodf
[j
].pguid
)))
315 (/* Then check if it accepts any instance id, and if not, if it matches Wine's
318 ((asked_format
->rgodf
[j
].dwType
& 0x00FFFF00) == DIDFT_ANYINSTANCE
) ||
319 (DIDFT_GETINSTANCE(wine_format
->rgodf
[i
].dwType
) == DIDFT_GETINSTANCE(asked_format
->rgodf
[j
].dwType
)))) {
323 TRACE("Matching : \n");
324 TRACE(" - Asked (%d) :\n", j
);
325 TRACE(" * GUID: %s ('%s')\n",
326 debugstr_guid(asked_format
->rgodf
[j
].pguid
),
327 _dump_dinput_GUID(asked_format
->rgodf
[j
].pguid
));
328 TRACE(" * Offset: %3ld\n", asked_format
->rgodf
[j
].dwOfs
);
329 TRACE(" * dwType: %08lx\n", asked_format
->rgodf
[j
].dwType
);
330 TRACE(" "); _dump_EnumObjects_flags(asked_format
->rgodf
[j
].dwType
); TRACE("\n");
332 TRACE(" - Wine (%d) :\n", j
);
333 TRACE(" * GUID: %s ('%s')\n",
334 debugstr_guid(wine_format
->rgodf
[j
].pguid
),
335 _dump_dinput_GUID(wine_format
->rgodf
[j
].pguid
));
336 TRACE(" * Offset: %3ld\n", wine_format
->rgodf
[j
].dwOfs
);
337 TRACE(" * dwType: %08lx\n", wine_format
->rgodf
[j
].dwType
);
338 TRACE(" "); _dump_EnumObjects_flags(wine_format
->rgodf
[j
].dwType
); TRACE("\n");
340 if (wine_format
->rgodf
[i
].dwType
& DIDFT_BUTTON
)
341 dt
[index
].size
= sizeof(BYTE
);
343 dt
[index
].size
= sizeof(DWORD
);
344 dt
[index
].offset_in
= wine_format
->rgodf
[i
].dwOfs
;
345 if (asked_format
->rgodf
[j
].dwOfs
< next
) {
346 WARN("bad format: dwOfs=%ld, changing to %ld\n", asked_format
->rgodf
[j
].dwOfs
, next
);
347 dt
[index
].offset_out
= next
;
350 dt
[index
].offset_out
= asked_format
->rgodf
[j
].dwOfs
;
351 offset
[i
] = asked_format
->rgodf
[j
].dwOfs
;
354 next
= next
+ dt
[index
].size
;
356 if (wine_format
->rgodf
[i
].dwOfs
!= dt
[index
].offset_out
)
364 if (j
== asked_format
->dwNumObjs
)
368 TRACE("Setting to default value :\n");
369 for (j
= 0; j
< asked_format
->dwNumObjs
; j
++) {
371 TRACE(" - Asked (%d) :\n", j
);
372 TRACE(" * GUID: %s ('%s')\n",
373 debugstr_guid(asked_format
->rgodf
[j
].pguid
),
374 _dump_dinput_GUID(asked_format
->rgodf
[j
].pguid
));
375 TRACE(" * Offset: %3ld\n", asked_format
->rgodf
[j
].dwOfs
);
376 TRACE(" * dwType: %08lx\n", asked_format
->rgodf
[j
].dwType
);
377 TRACE(" "); _dump_EnumObjects_flags(asked_format
->rgodf
[j
].dwType
); TRACE("\n");
379 if (asked_format
->rgodf
[j
].dwType
& DIDFT_BUTTON
)
380 dt
[index
].size
= sizeof(BYTE
);
382 dt
[index
].size
= sizeof(DWORD
);
383 dt
[index
].offset_in
= -1;
384 dt
[index
].offset_out
= asked_format
->rgodf
[j
].dwOfs
;
392 ret
->internal_format_size
= wine_format
->dwDataSize
;
396 HeapFree(GetProcessHeap(), 0, dt
);
401 HeapFree(GetProcessHeap(), 0, done
);
406 BOOL
DIEnumDevicesCallbackAtoW(LPCDIDEVICEOBJECTINSTANCEA lpddi
, LPVOID lpvRef
) {
407 DIDEVICEOBJECTINSTANCEW ddtmp
;
408 device_enumobjects_AtoWcb_data
* data
;
410 data
= (device_enumobjects_AtoWcb_data
*) lpvRef
;
412 memset(&ddtmp
, 0, sizeof(DIDEVICEINSTANCEW
));
414 ddtmp
.dwSize
= sizeof(DIDEVICEINSTANCEW
);
415 ddtmp
.guidType
= lpddi
->guidType
;
416 ddtmp
.dwOfs
= lpddi
->dwOfs
;
417 ddtmp
.dwType
= lpddi
->dwType
;
418 ddtmp
.dwFlags
= lpddi
->dwFlags
;
419 MultiByteToWideChar(CP_ACP
, 0, lpddi
->tszName
, -1, ddtmp
.tszName
, MAX_PATH
);
421 if (lpddi
->dwSize
== sizeof(DIDEVICEINSTANCEA
)) {
423 * if dwSize < sizeof(DIDEVICEINSTANCEA of DInput version >= 5)
424 * force feedback and other newer datas aren't available
426 ddtmp
.dwFFMaxForce
= lpddi
->dwFFMaxForce
;
427 ddtmp
.dwFFForceResolution
= lpddi
->dwFFForceResolution
;
428 ddtmp
.wCollectionNumber
= lpddi
->wCollectionNumber
;
429 ddtmp
.wDesignatorIndex
= lpddi
->wDesignatorIndex
;
430 ddtmp
.wUsagePage
= lpddi
->wUsagePage
;
431 ddtmp
.wUsage
= lpddi
->wUsage
;
432 ddtmp
.dwDimension
= lpddi
->dwDimension
;
433 ddtmp
.wExponent
= lpddi
->wExponent
;
434 ddtmp
.wReserved
= lpddi
->wReserved
;
436 return data
->lpCallBack(&ddtmp
, data
->lpvRef
);
439 /******************************************************************************
440 * IDirectInputDeviceA
443 HRESULT WINAPI
IDirectInputDevice2AImpl_SetDataFormat(
444 LPDIRECTINPUTDEVICE8A iface
,LPCDIDATAFORMAT df
446 IDirectInputDevice2AImpl
*This
= (IDirectInputDevice2AImpl
*)iface
;
448 TRACE("(this=%p,%p)\n",This
,df
);
450 _dump_DIDATAFORMAT(df
);
455 HRESULT WINAPI
IDirectInputDevice2AImpl_SetCooperativeLevel(
456 LPDIRECTINPUTDEVICE8A iface
,HWND hwnd
,DWORD dwflags
458 IDirectInputDevice2AImpl
*This
= (IDirectInputDevice2AImpl
*)iface
;
459 TRACE("(this=%p,0x%08lx,0x%08lx)\n",This
,(DWORD
)hwnd
,dwflags
);
460 if (TRACE_ON(dinput
)) {
461 TRACE(" cooperative level : ");
462 _dump_cooperativelevel_DI(dwflags
);
467 HRESULT WINAPI
IDirectInputDevice2AImpl_SetEventNotification(
468 LPDIRECTINPUTDEVICE8A iface
,HANDLE hnd
470 IDirectInputDevice2AImpl
*This
= (IDirectInputDevice2AImpl
*)iface
;
471 FIXME("(this=%p,0x%08lx): stub\n",This
,(DWORD
)hnd
);
475 ULONG WINAPI
IDirectInputDevice2AImpl_Release(LPDIRECTINPUTDEVICE8A iface
)
477 IDirectInputDevice2AImpl
*This
= (IDirectInputDevice2AImpl
*)iface
;
479 ref
= InterlockedDecrement(&(This
->ref
));
481 HeapFree(GetProcessHeap(),0,This
);
485 HRESULT WINAPI
IDirectInputDevice2AImpl_QueryInterface(
486 LPDIRECTINPUTDEVICE8A iface
,REFIID riid
,LPVOID
*ppobj
489 IDirectInputDevice2AImpl
*This
= (IDirectInputDevice2AImpl
*)iface
;
491 TRACE("(this=%p,%s,%p)\n",This
,debugstr_guid(riid
),ppobj
);
492 if (IsEqualGUID(&IID_IUnknown
,riid
)) {
493 IDirectInputDevice2_AddRef(iface
);
497 if (IsEqualGUID(&IID_IDirectInputDeviceA
,riid
)) {
498 IDirectInputDevice2_AddRef(iface
);
502 if (IsEqualGUID(&IID_IDirectInputDevice2A
,riid
)) {
503 IDirectInputDevice2_AddRef(iface
);
507 if (IsEqualGUID(&IID_IDirectInputDevice7A
,riid
)) {
508 IDirectInputDevice7_AddRef(iface
);
512 TRACE("Unsupported interface !\n");
516 HRESULT WINAPI
IDirectInputDevice2WImpl_QueryInterface(
517 LPDIRECTINPUTDEVICE8W iface
,REFIID riid
,LPVOID
*ppobj
520 IDirectInputDevice2AImpl
*This
= (IDirectInputDevice2AImpl
*)iface
;
522 TRACE("(this=%p,%s,%p)\n",This
,debugstr_guid(riid
),ppobj
);
523 if (IsEqualGUID(&IID_IUnknown
,riid
)) {
524 IDirectInputDevice2_AddRef(iface
);
528 if (IsEqualGUID(&IID_IDirectInputDeviceW
,riid
)) {
529 IDirectInputDevice2_AddRef(iface
);
533 if (IsEqualGUID(&IID_IDirectInputDevice2W
,riid
)) {
534 IDirectInputDevice2_AddRef(iface
);
538 if (IsEqualGUID(&IID_IDirectInputDevice7W
,riid
)) {
539 IDirectInputDevice7_AddRef(iface
);
543 TRACE("Unsupported interface !\n");
547 ULONG WINAPI
IDirectInputDevice2AImpl_AddRef(
548 LPDIRECTINPUTDEVICE8A iface
)
550 IDirectInputDevice2AImpl
*This
= (IDirectInputDevice2AImpl
*)iface
;
551 return InterlockedIncrement(&(This
->ref
));
554 HRESULT WINAPI
IDirectInputDevice2AImpl_EnumObjects(
555 LPDIRECTINPUTDEVICE8A iface
,
556 LPDIENUMDEVICEOBJECTSCALLBACKA lpCallback
,
560 FIXME("(this=%p,%p,%p,%08lx): stub!\n", iface
, lpCallback
, lpvRef
, dwFlags
);
561 if (TRACE_ON(dinput
)) {
562 DPRINTF(" - flags = ");
563 _dump_EnumObjects_flags(dwFlags
);
570 HRESULT WINAPI
IDirectInputDevice2WImpl_EnumObjects(
571 LPDIRECTINPUTDEVICE8W iface
,
572 LPDIENUMDEVICEOBJECTSCALLBACKW lpCallback
,
576 FIXME("(this=%p,%p,%p,%08lx): stub!\n", iface
, lpCallback
, lpvRef
, dwFlags
);
577 if (TRACE_ON(dinput
)) {
578 DPRINTF(" - flags = ");
579 _dump_EnumObjects_flags(dwFlags
);
586 HRESULT WINAPI
IDirectInputDevice2AImpl_GetProperty(
587 LPDIRECTINPUTDEVICE8A iface
,
589 LPDIPROPHEADER pdiph
)
591 FIXME("(this=%p,%s,%p): stub!\n",
592 iface
, debugstr_guid(rguid
), pdiph
);
594 if (TRACE_ON(dinput
))
595 _dump_DIPROPHEADER(pdiph
);
600 HRESULT WINAPI
IDirectInputDevice2AImpl_GetObjectInfo(
601 LPDIRECTINPUTDEVICE8A iface
,
602 LPDIDEVICEOBJECTINSTANCEA pdidoi
,
606 FIXME("(this=%p,%p,%ld,0x%08lx): stub!\n",
607 iface
, pdidoi
, dwObj
, dwHow
);
612 HRESULT WINAPI
IDirectInputDevice2WImpl_GetObjectInfo(
613 LPDIRECTINPUTDEVICE8W iface
,
614 LPDIDEVICEOBJECTINSTANCEW pdidoi
,
618 FIXME("(this=%p,%p,%ld,0x%08lx): stub!\n",
619 iface
, pdidoi
, dwObj
, dwHow
);
624 HRESULT WINAPI
IDirectInputDevice2AImpl_GetDeviceInfo(
625 LPDIRECTINPUTDEVICE8A iface
,
626 LPDIDEVICEINSTANCEA pdidi
)
628 FIXME("(this=%p,%p): stub!\n",
634 HRESULT WINAPI
IDirectInputDevice2WImpl_GetDeviceInfo(
635 LPDIRECTINPUTDEVICE8W iface
,
636 LPDIDEVICEINSTANCEW pdidi
)
638 FIXME("(this=%p,%p): stub!\n",
644 HRESULT WINAPI
IDirectInputDevice2AImpl_RunControlPanel(
645 LPDIRECTINPUTDEVICE8A iface
,
649 FIXME("(this=%p,%p,0x%08lx): stub!\n",
650 iface
, hwndOwner
, dwFlags
);
655 HRESULT WINAPI
IDirectInputDevice2AImpl_Initialize(
656 LPDIRECTINPUTDEVICE8A iface
,
661 FIXME("(this=%p,%p,%ld,%s): stub!\n",
662 iface
, hinst
, dwVersion
, debugstr_guid(rguid
));
666 /******************************************************************************
667 * IDirectInputDevice2A
670 HRESULT WINAPI
IDirectInputDevice2AImpl_CreateEffect(
671 LPDIRECTINPUTDEVICE8A iface
,
674 LPDIRECTINPUTEFFECT
*ppdef
,
677 FIXME("(this=%p,%s,%p,%p,%p): stub!\n",
678 iface
, debugstr_guid(rguid
), lpeff
, ppdef
, pUnkOuter
);
682 HRESULT WINAPI
IDirectInputDevice2AImpl_EnumEffects(
683 LPDIRECTINPUTDEVICE8A iface
,
684 LPDIENUMEFFECTSCALLBACKA lpCallback
,
688 FIXME("(this=%p,%p,%p,0x%08lx): stub!\n",
689 iface
, lpCallback
, lpvRef
, dwFlags
);
694 HRESULT WINAPI
IDirectInputDevice2WImpl_EnumEffects(
695 LPDIRECTINPUTDEVICE8W iface
,
696 LPDIENUMEFFECTSCALLBACKW lpCallback
,
700 FIXME("(this=%p,%p,%p,0x%08lx): stub!\n",
701 iface
, lpCallback
, lpvRef
, dwFlags
);
706 HRESULT WINAPI
IDirectInputDevice2AImpl_GetEffectInfo(
707 LPDIRECTINPUTDEVICE8A iface
,
708 LPDIEFFECTINFOA lpdei
,
711 FIXME("(this=%p,%p,%s): stub!\n",
712 iface
, lpdei
, debugstr_guid(rguid
));
716 HRESULT WINAPI
IDirectInputDevice2WImpl_GetEffectInfo(
717 LPDIRECTINPUTDEVICE8W iface
,
718 LPDIEFFECTINFOW lpdei
,
721 FIXME("(this=%p,%p,%s): stub!\n",
722 iface
, lpdei
, debugstr_guid(rguid
));
726 HRESULT WINAPI
IDirectInputDevice2AImpl_GetForceFeedbackState(
727 LPDIRECTINPUTDEVICE8A iface
,
730 FIXME("(this=%p,%p): stub!\n",
735 HRESULT WINAPI
IDirectInputDevice2AImpl_SendForceFeedbackCommand(
736 LPDIRECTINPUTDEVICE8A iface
,
739 FIXME("(this=%p,0x%08lx): stub!\n",
744 HRESULT WINAPI
IDirectInputDevice2AImpl_EnumCreatedEffectObjects(
745 LPDIRECTINPUTDEVICE8A iface
,
746 LPDIENUMCREATEDEFFECTOBJECTSCALLBACK lpCallback
,
750 FIXME("(this=%p,%p,%p,0x%08lx): stub!\n",
751 iface
, lpCallback
, lpvRef
, dwFlags
);
753 lpCallback(NULL
, lpvRef
);
757 HRESULT WINAPI
IDirectInputDevice2AImpl_Escape(
758 LPDIRECTINPUTDEVICE8A iface
,
759 LPDIEFFESCAPE lpDIEEsc
)
761 FIXME("(this=%p,%p): stub!\n",
766 HRESULT WINAPI
IDirectInputDevice2AImpl_Poll(
767 LPDIRECTINPUTDEVICE8A iface
)
769 /* Because wine devices do not need to be polled, just return DI_NOEFFECT */
773 HRESULT WINAPI
IDirectInputDevice2AImpl_SendDeviceData(
774 LPDIRECTINPUTDEVICE8A iface
,
776 LPCDIDEVICEOBJECTDATA rgdod
,
780 FIXME("(this=%p,0x%08lx,%p,%p,0x%08lx): stub!\n",
781 iface
, cbObjectData
, rgdod
, pdwInOut
, dwFlags
);
786 HRESULT WINAPI
IDirectInputDevice7AImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8A iface
,
788 LPDIENUMEFFECTSINFILECALLBACK pec
,
792 FIXME("(%p)->(%s,%p,%p,%08lx): stub !\n", iface
, lpszFileName
, pec
, pvRef
, dwFlags
);
797 HRESULT WINAPI
IDirectInputDevice7WImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8W iface
,
798 LPCWSTR lpszFileName
,
799 LPDIENUMEFFECTSINFILECALLBACK pec
,
803 FIXME("(%p)->(%s,%p,%p,%08lx): stub !\n", iface
, debugstr_w(lpszFileName
), pec
, pvRef
, dwFlags
);
808 HRESULT WINAPI
IDirectInputDevice7AImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8A iface
,
811 LPDIFILEEFFECT rgDiFileEft
,
814 FIXME("(%p)->(%s,%08lx,%p,%08lx): stub !\n", iface
, lpszFileName
, dwEntries
, rgDiFileEft
, dwFlags
);
819 HRESULT WINAPI
IDirectInputDevice7WImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8W iface
,
820 LPCWSTR lpszFileName
,
822 LPDIFILEEFFECT rgDiFileEft
,
825 FIXME("(%p)->(%s,%08lx,%p,%08lx): stub !\n", iface
, debugstr_w(lpszFileName
), dwEntries
, rgDiFileEft
, dwFlags
);
830 HRESULT WINAPI
IDirectInputDevice8AImpl_BuildActionMap(LPDIRECTINPUTDEVICE8A iface
,
831 LPDIACTIONFORMATA lpdiaf
,
835 FIXME("(%p)->(%p,%s,%08lx): stub !\n", iface
, lpdiaf
, lpszUserName
, dwFlags
);
840 HRESULT WINAPI
IDirectInputDevice8WImpl_BuildActionMap(LPDIRECTINPUTDEVICE8W iface
,
841 LPDIACTIONFORMATW lpdiaf
,
842 LPCWSTR lpszUserName
,
845 FIXME("(%p)->(%p,%s,%08lx): stub !\n", iface
, lpdiaf
, debugstr_w(lpszUserName
), dwFlags
);
850 HRESULT WINAPI
IDirectInputDevice8AImpl_SetActionMap(LPDIRECTINPUTDEVICE8A iface
,
851 LPDIACTIONFORMATA lpdiaf
,
855 FIXME("(%p)->(%p,%s,%08lx): stub !\n", iface
, lpdiaf
, lpszUserName
, dwFlags
);
860 HRESULT WINAPI
IDirectInputDevice8WImpl_SetActionMap(LPDIRECTINPUTDEVICE8W iface
,
861 LPDIACTIONFORMATW lpdiaf
,
862 LPCWSTR lpszUserName
,
865 FIXME("(%p)->(%p,%s,%08lx): stub !\n", iface
, lpdiaf
, debugstr_w(lpszUserName
), dwFlags
);
870 HRESULT WINAPI
IDirectInputDevice8AImpl_GetImageInfo(LPDIRECTINPUTDEVICE8A iface
,
871 LPDIDEVICEIMAGEINFOHEADERA lpdiDevImageInfoHeader
)
873 FIXME("(%p)->(%p): stub !\n", iface
, lpdiDevImageInfoHeader
);
878 HRESULT WINAPI
IDirectInputDevice8WImpl_GetImageInfo(LPDIRECTINPUTDEVICE8W iface
,
879 LPDIDEVICEIMAGEINFOHEADERW lpdiDevImageInfoHeader
)
881 FIXME("(%p)->(%p): stub !\n", iface
, lpdiDevImageInfoHeader
);