dinput: Win64 printf format warning fixes.
[wine/multimedia.git] / dlls / dinput / device.c
blobadb9faa5aaeca4affca7550705e5796ac0df1e1d
1 /* DirectInput Device
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.
27 #include "config.h"
29 #include <stdarg.h>
30 #include <string.h>
31 #include "wine/debug.h"
32 #include "wine/unicode.h"
33 #include "windef.h"
34 #include "winbase.h"
35 #include "winuser.h"
36 #include "winerror.h"
37 #include "dinput.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)) {
48 unsigned int i;
49 static const struct {
50 DWORD mask;
51 const char *name;
52 } flags[] = {
53 #define FE(x) { x, #x}
54 FE(DISCL_BACKGROUND),
55 FE(DISCL_EXCLUSIVE),
56 FE(DISCL_FOREGROUND),
57 FE(DISCL_NONEXCLUSIVE),
58 FE(DISCL_NOWINKEY)
59 #undef FE
61 for (i = 0; i < (sizeof(flags) / sizeof(flags[0])); i++)
62 if (flags[i].mask & dwFlags)
63 DPRINTF("%s ",flags[i].name);
64 DPRINTF("\n");
68 void _dump_EnumObjects_flags(DWORD dwFlags) {
69 if (TRACE_ON(dinput)) {
70 unsigned int i;
71 DWORD type, instance;
72 static const struct {
73 DWORD mask;
74 const char *name;
75 } flags[] = {
76 #define FE(x) { x, #x}
77 FE(DIDFT_RELAXIS),
78 FE(DIDFT_ABSAXIS),
79 FE(DIDFT_PSHBUTTON),
80 FE(DIDFT_TGLBUTTON),
81 FE(DIDFT_POV),
82 FE(DIDFT_COLLECTION),
83 FE(DIDFT_NODATA),
84 FE(DIDFT_FFACTUATOR),
85 FE(DIDFT_FFEFFECTTRIGGER),
86 FE(DIDFT_OUTPUT),
87 FE(DIDFT_VENDORDEFINED),
88 FE(DIDFT_ALIAS),
89 FE(DIDFT_OPTIONAL)
90 #undef FE
92 type = (dwFlags & 0xFF0000FF);
93 instance = ((dwFlags >> 8) & 0xFFFF);
94 DPRINTF("Type:");
95 if (type == DIDFT_ALL) {
96 DPRINTF(" DIDFT_ALL");
97 } else {
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);
104 if (type) {
105 DPRINTF(" (unhandled: %08x)", type);
108 DPRINTF(" / Instance: ");
109 if (instance == ((DIDFT_ANYINSTANCE >> 8) & 0xFFFF)) {
110 DPRINTF("DIDFT_ANYINSTANCE");
111 } else {
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) {
143 unsigned int i;
144 static const struct {
145 const GUID *guid;
146 const char *name;
147 } guids[] = {
148 #define FE(x) { &x, #x}
149 FE(GUID_XAxis),
150 FE(GUID_YAxis),
151 FE(GUID_ZAxis),
152 FE(GUID_RxAxis),
153 FE(GUID_RyAxis),
154 FE(GUID_RzAxis),
155 FE(GUID_Slider),
156 FE(GUID_Button),
157 FE(GUID_Key),
158 FE(GUID_POV),
159 FE(GUID_Unknown),
160 FE(GUID_SysMouse),
161 FE(GUID_SysKeyboard),
162 FE(GUID_Joystick),
163 FE(GUID_ConstantForce),
164 FE(GUID_RampForce),
165 FE(GUID_Square),
166 FE(GUID_Sine),
167 FE(GUID_Triangle),
168 FE(GUID_SawtoothUp),
169 FE(GUID_SawtoothDown),
170 FE(GUID_Spring),
171 FE(GUID_Damper),
172 FE(GUID_Inertia),
173 FE(GUID_Friction),
174 FE(GUID_CustomForce)
175 #undef FE
177 if (guid == NULL)
178 return "null GUID";
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) {
188 unsigned int i;
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;
205 TRACE(")\n");
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) {
221 int i;
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);
228 } else {
229 for (i = 0; i < df->size; i++) {
230 if (df->dt[i].offset_in >= 0) {
231 switch (df->dt[i].size) {
232 case 1:
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);
236 break;
238 case 2:
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));
242 break;
244 case 4:
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));
248 break;
250 default:
251 memcpy((out_c + df->dt[i].offset_out), (in_c + df->dt[i].offset_in), df->dt[i].size);
252 break;
254 } else {
255 switch (df->dt[i].size) {
256 case 1:
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;
260 break;
262 case 2:
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;
266 break;
268 case 4:
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;
272 break;
274 default:
275 memset((out_c + df->dt[i].offset_out), 0, df->dt[i].size);
276 break;
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) {
291 DataFormat *ret;
292 DataTransform *dt;
293 unsigned int i, j;
294 int same = 1;
295 int *done;
296 int index = 0;
297 DWORD next = 0;
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++) {
309 offset[i] = -1;
311 for (j = 0; j < asked_format->dwNumObjs; j++) {
312 if (done[j] == 1)
313 continue;
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
323 * instance id.
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)) {
332 done[j] = 1;
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);
353 else
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;
359 offset[i] = next;
360 } else {
361 dt[index].offset_out = asked_format->rgodf[j].dwOfs;
362 offset[i] = asked_format->rgodf[j].dwOfs;
364 dt[index].value = 0;
365 next = next + dt[index].size;
367 if (wine_format->rgodf[i].dwOfs != dt[index].offset_out)
368 same = 0;
370 index++;
371 break;
375 if (j == asked_format->dwNumObjs)
376 same = 0;
379 TRACE("Setting to default value :\n");
380 for (j = 0; j < asked_format->dwNumObjs; j++) {
381 if (done[j] == 0) {
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);
392 else
393 dt[index].size = sizeof(DWORD);
394 dt[index].offset_in = -1;
395 dt[index].offset_out = asked_format->rgodf[j].dwOfs;
396 dt[index].value = 0;
397 index++;
399 same = 0;
403 ret->internal_format_size = wine_format->dwDataSize;
404 ret->size = index;
405 if (same) {
406 ret->dt = NULL;
407 HeapFree(GetProcessHeap(), 0, dt);
408 } else {
409 ret->dt = dt;
412 HeapFree(GetProcessHeap(), 0, done);
414 return ret;
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);
463 return DI_OK;
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);
475 return DI_OK;
478 HRESULT WINAPI IDirectInputDevice2AImpl_SetEventNotification(
479 LPDIRECTINPUTDEVICE8A iface,HANDLE hnd
481 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
482 FIXME("(this=%p,%p): stub\n",This,hnd);
483 return DI_OK;
486 ULONG WINAPI IDirectInputDevice2AImpl_Release(LPDIRECTINPUTDEVICE8A iface)
488 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
489 ULONG ref;
490 ref = InterlockedDecrement(&(This->ref));
491 if (ref == 0)
492 HeapFree(GetProcessHeap(),0,This);
493 return ref;
496 HRESULT WINAPI IDirectInputDevice2AImpl_QueryInterface(
497 LPDIRECTINPUTDEVICE8A iface,REFIID riid,LPVOID *ppobj
500 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
502 TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
503 if (IsEqualGUID(&IID_IUnknown,riid)) {
504 IDirectInputDevice2_AddRef(iface);
505 *ppobj = This;
506 return DI_OK;
508 if (IsEqualGUID(&IID_IDirectInputDeviceA,riid)) {
509 IDirectInputDevice2_AddRef(iface);
510 *ppobj = This;
511 return DI_OK;
513 if (IsEqualGUID(&IID_IDirectInputDevice2A,riid)) {
514 IDirectInputDevice2_AddRef(iface);
515 *ppobj = This;
516 return DI_OK;
518 if (IsEqualGUID(&IID_IDirectInputDevice7A,riid)) {
519 IDirectInputDevice7_AddRef(iface);
520 *ppobj = This;
521 return DI_OK;
523 if (IsEqualGUID(&IID_IDirectInputDevice8A,riid)) {
524 IDirectInputDevice8_AddRef(iface);
525 *ppobj = This;
526 return DI_OK;
528 TRACE("Unsupported interface !\n");
529 return E_FAIL;
532 HRESULT WINAPI IDirectInputDevice2WImpl_QueryInterface(
533 LPDIRECTINPUTDEVICE8W iface,REFIID riid,LPVOID *ppobj
536 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
538 TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
539 if (IsEqualGUID(&IID_IUnknown,riid)) {
540 IDirectInputDevice2_AddRef(iface);
541 *ppobj = This;
542 return DI_OK;
544 if (IsEqualGUID(&IID_IDirectInputDeviceW,riid)) {
545 IDirectInputDevice2_AddRef(iface);
546 *ppobj = This;
547 return DI_OK;
549 if (IsEqualGUID(&IID_IDirectInputDevice2W,riid)) {
550 IDirectInputDevice2_AddRef(iface);
551 *ppobj = This;
552 return DI_OK;
554 if (IsEqualGUID(&IID_IDirectInputDevice7W,riid)) {
555 IDirectInputDevice7_AddRef(iface);
556 *ppobj = This;
557 return DI_OK;
559 if (IsEqualGUID(&IID_IDirectInputDevice8W,riid)) {
560 IDirectInputDevice8_AddRef(iface);
561 *ppobj = This;
562 return DI_OK;
564 TRACE("Unsupported interface !\n");
565 return E_FAIL;
568 ULONG WINAPI IDirectInputDevice2AImpl_AddRef(
569 LPDIRECTINPUTDEVICE8A iface)
571 IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
572 return InterlockedIncrement(&(This->ref));
575 HRESULT WINAPI IDirectInputDevice2AImpl_EnumObjects(
576 LPDIRECTINPUTDEVICE8A iface,
577 LPDIENUMDEVICEOBJECTSCALLBACKA lpCallback,
578 LPVOID lpvRef,
579 DWORD dwFlags)
581 FIXME("(this=%p,%p,%p,%08x): stub!\n", iface, lpCallback, lpvRef, dwFlags);
582 if (TRACE_ON(dinput)) {
583 DPRINTF(" - flags = ");
584 _dump_EnumObjects_flags(dwFlags);
585 DPRINTF("\n");
588 return DI_OK;
591 HRESULT WINAPI IDirectInputDevice2WImpl_EnumObjects(
592 LPDIRECTINPUTDEVICE8W iface,
593 LPDIENUMDEVICEOBJECTSCALLBACKW lpCallback,
594 LPVOID lpvRef,
595 DWORD dwFlags)
597 FIXME("(this=%p,%p,%p,%08x): stub!\n", iface, lpCallback, lpvRef, dwFlags);
598 if (TRACE_ON(dinput)) {
599 DPRINTF(" - flags = ");
600 _dump_EnumObjects_flags(dwFlags);
601 DPRINTF("\n");
604 return DI_OK;
607 HRESULT WINAPI IDirectInputDevice2AImpl_GetProperty(
608 LPDIRECTINPUTDEVICE8A iface,
609 REFGUID rguid,
610 LPDIPROPHEADER pdiph)
612 FIXME("(this=%p,%s,%p): stub!\n",
613 iface, debugstr_guid(rguid), pdiph);
615 if (TRACE_ON(dinput))
616 _dump_DIPROPHEADER(pdiph);
618 return DI_OK;
621 HRESULT WINAPI IDirectInputDevice2AImpl_GetObjectInfo(
622 LPDIRECTINPUTDEVICE8A iface,
623 LPDIDEVICEOBJECTINSTANCEA pdidoi,
624 DWORD dwObj,
625 DWORD dwHow)
627 FIXME("(this=%p,%p,%d,0x%08x): stub!\n",
628 iface, pdidoi, dwObj, dwHow);
630 return DI_OK;
633 HRESULT WINAPI IDirectInputDevice2WImpl_GetObjectInfo(
634 LPDIRECTINPUTDEVICE8W iface,
635 LPDIDEVICEOBJECTINSTANCEW pdidoi,
636 DWORD dwObj,
637 DWORD dwHow)
639 FIXME("(this=%p,%p,%d,0x%08x): stub!\n",
640 iface, pdidoi, dwObj, dwHow);
642 return DI_OK;
645 HRESULT WINAPI IDirectInputDevice2AImpl_GetDeviceInfo(
646 LPDIRECTINPUTDEVICE8A iface,
647 LPDIDEVICEINSTANCEA pdidi)
649 FIXME("(this=%p,%p): stub!\n",
650 iface, pdidi);
652 return DI_OK;
655 HRESULT WINAPI IDirectInputDevice2WImpl_GetDeviceInfo(
656 LPDIRECTINPUTDEVICE8W iface,
657 LPDIDEVICEINSTANCEW pdidi)
659 FIXME("(this=%p,%p): stub!\n",
660 iface, pdidi);
662 return DI_OK;
665 HRESULT WINAPI IDirectInputDevice2AImpl_RunControlPanel(
666 LPDIRECTINPUTDEVICE8A iface,
667 HWND hwndOwner,
668 DWORD dwFlags)
670 FIXME("(this=%p,%p,0x%08x): stub!\n",
671 iface, hwndOwner, dwFlags);
673 return DI_OK;
676 HRESULT WINAPI IDirectInputDevice2AImpl_Initialize(
677 LPDIRECTINPUTDEVICE8A iface,
678 HINSTANCE hinst,
679 DWORD dwVersion,
680 REFGUID rguid)
682 FIXME("(this=%p,%p,%d,%s): stub!\n",
683 iface, hinst, dwVersion, debugstr_guid(rguid));
684 return DI_OK;
687 /******************************************************************************
688 * IDirectInputDevice2A
691 HRESULT WINAPI IDirectInputDevice2AImpl_CreateEffect(
692 LPDIRECTINPUTDEVICE8A iface,
693 REFGUID rguid,
694 LPCDIEFFECT lpeff,
695 LPDIRECTINPUTEFFECT *ppdef,
696 LPUNKNOWN pUnkOuter)
698 FIXME("(this=%p,%s,%p,%p,%p): stub!\n",
699 iface, debugstr_guid(rguid), lpeff, ppdef, pUnkOuter);
700 return DI_OK;
703 HRESULT WINAPI IDirectInputDevice2AImpl_EnumEffects(
704 LPDIRECTINPUTDEVICE8A iface,
705 LPDIENUMEFFECTSCALLBACKA lpCallback,
706 LPVOID lpvRef,
707 DWORD dwFlags)
709 FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
710 iface, lpCallback, lpvRef, dwFlags);
712 return DI_OK;
715 HRESULT WINAPI IDirectInputDevice2WImpl_EnumEffects(
716 LPDIRECTINPUTDEVICE8W iface,
717 LPDIENUMEFFECTSCALLBACKW lpCallback,
718 LPVOID lpvRef,
719 DWORD dwFlags)
721 FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
722 iface, lpCallback, lpvRef, dwFlags);
724 return DI_OK;
727 HRESULT WINAPI IDirectInputDevice2AImpl_GetEffectInfo(
728 LPDIRECTINPUTDEVICE8A iface,
729 LPDIEFFECTINFOA lpdei,
730 REFGUID rguid)
732 FIXME("(this=%p,%p,%s): stub!\n",
733 iface, lpdei, debugstr_guid(rguid));
734 return DI_OK;
737 HRESULT WINAPI IDirectInputDevice2WImpl_GetEffectInfo(
738 LPDIRECTINPUTDEVICE8W iface,
739 LPDIEFFECTINFOW lpdei,
740 REFGUID rguid)
742 FIXME("(this=%p,%p,%s): stub!\n",
743 iface, lpdei, debugstr_guid(rguid));
744 return DI_OK;
747 HRESULT WINAPI IDirectInputDevice2AImpl_GetForceFeedbackState(
748 LPDIRECTINPUTDEVICE8A iface,
749 LPDWORD pdwOut)
751 FIXME("(this=%p,%p): stub!\n",
752 iface, pdwOut);
753 return DI_OK;
756 HRESULT WINAPI IDirectInputDevice2AImpl_SendForceFeedbackCommand(
757 LPDIRECTINPUTDEVICE8A iface,
758 DWORD dwFlags)
760 FIXME("(this=%p,0x%08x): stub!\n",
761 iface, dwFlags);
762 return DI_OK;
765 HRESULT WINAPI IDirectInputDevice2AImpl_EnumCreatedEffectObjects(
766 LPDIRECTINPUTDEVICE8A iface,
767 LPDIENUMCREATEDEFFECTOBJECTSCALLBACK lpCallback,
768 LPVOID lpvRef,
769 DWORD dwFlags)
771 FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
772 iface, lpCallback, lpvRef, dwFlags);
773 return DI_OK;
776 HRESULT WINAPI IDirectInputDevice2AImpl_Escape(
777 LPDIRECTINPUTDEVICE8A iface,
778 LPDIEFFESCAPE lpDIEEsc)
780 FIXME("(this=%p,%p): stub!\n",
781 iface, lpDIEEsc);
782 return DI_OK;
785 HRESULT WINAPI IDirectInputDevice2AImpl_Poll(
786 LPDIRECTINPUTDEVICE8A iface)
788 /* Because wine devices do not need to be polled, just return DI_NOEFFECT */
789 return DI_NOEFFECT;
792 HRESULT WINAPI IDirectInputDevice2AImpl_SendDeviceData(
793 LPDIRECTINPUTDEVICE8A iface,
794 DWORD cbObjectData,
795 LPCDIDEVICEOBJECTDATA rgdod,
796 LPDWORD pdwInOut,
797 DWORD dwFlags)
799 FIXME("(this=%p,0x%08x,%p,%p,0x%08x): stub!\n",
800 iface, cbObjectData, rgdod, pdwInOut, dwFlags);
802 return DI_OK;
805 HRESULT WINAPI IDirectInputDevice7AImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8A iface,
806 LPCSTR lpszFileName,
807 LPDIENUMEFFECTSINFILECALLBACK pec,
808 LPVOID pvRef,
809 DWORD dwFlags)
811 FIXME("(%p)->(%s,%p,%p,%08x): stub !\n", iface, lpszFileName, pec, pvRef, dwFlags);
813 return DI_OK;
816 HRESULT WINAPI IDirectInputDevice7WImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8W iface,
817 LPCWSTR lpszFileName,
818 LPDIENUMEFFECTSINFILECALLBACK pec,
819 LPVOID pvRef,
820 DWORD dwFlags)
822 FIXME("(%p)->(%s,%p,%p,%08x): stub !\n", iface, debugstr_w(lpszFileName), pec, pvRef, dwFlags);
824 return DI_OK;
827 HRESULT WINAPI IDirectInputDevice7AImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8A iface,
828 LPCSTR lpszFileName,
829 DWORD dwEntries,
830 LPDIFILEEFFECT rgDiFileEft,
831 DWORD dwFlags)
833 FIXME("(%p)->(%s,%08x,%p,%08x): stub !\n", iface, lpszFileName, dwEntries, rgDiFileEft, dwFlags);
835 return DI_OK;
838 HRESULT WINAPI IDirectInputDevice7WImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8W iface,
839 LPCWSTR lpszFileName,
840 DWORD dwEntries,
841 LPDIFILEEFFECT rgDiFileEft,
842 DWORD dwFlags)
844 FIXME("(%p)->(%s,%08x,%p,%08x): stub !\n", iface, debugstr_w(lpszFileName), dwEntries, rgDiFileEft, dwFlags);
846 return DI_OK;
849 HRESULT WINAPI IDirectInputDevice8AImpl_BuildActionMap(LPDIRECTINPUTDEVICE8A iface,
850 LPDIACTIONFORMATA lpdiaf,
851 LPCSTR lpszUserName,
852 DWORD dwFlags)
854 FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, lpszUserName, dwFlags);
856 return DI_OK;
859 HRESULT WINAPI IDirectInputDevice8WImpl_BuildActionMap(LPDIRECTINPUTDEVICE8W iface,
860 LPDIACTIONFORMATW lpdiaf,
861 LPCWSTR lpszUserName,
862 DWORD dwFlags)
864 FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
866 return DI_OK;
869 HRESULT WINAPI IDirectInputDevice8AImpl_SetActionMap(LPDIRECTINPUTDEVICE8A iface,
870 LPDIACTIONFORMATA lpdiaf,
871 LPCSTR lpszUserName,
872 DWORD dwFlags)
874 FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, lpszUserName, dwFlags);
876 return DI_OK;
879 HRESULT WINAPI IDirectInputDevice8WImpl_SetActionMap(LPDIRECTINPUTDEVICE8W iface,
880 LPDIACTIONFORMATW lpdiaf,
881 LPCWSTR lpszUserName,
882 DWORD dwFlags)
884 FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
886 return DI_OK;
889 HRESULT WINAPI IDirectInputDevice8AImpl_GetImageInfo(LPDIRECTINPUTDEVICE8A iface,
890 LPDIDEVICEIMAGEINFOHEADERA lpdiDevImageInfoHeader)
892 FIXME("(%p)->(%p): stub !\n", iface, lpdiDevImageInfoHeader);
894 return DI_OK;
897 HRESULT WINAPI IDirectInputDevice8WImpl_GetImageInfo(LPDIRECTINPUTDEVICE8W iface,
898 LPDIDEVICEIMAGEINFOHEADERW lpdiDevImageInfoHeader)
900 FIXME("(%p)->(%p): stub !\n", iface, lpdiDevImageInfoHeader);
902 return DI_OK;