dinput: Move acquired flag to the base device class. Add tests.
[wine] / dlls / dinput / device.c
1 /*              DirectInput Device
2  *
3  * Copyright 1998 Marcus Meissner
4  * Copyright 1998,1999 Lionel Ulmer
5  *
6  *
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.
11  *
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.
16  *
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
20  */
21
22 /* This file contains all the Device specific functions that can be used as stubs
23    by real device implementations.
24
25    It also contains all the helper functions.
26 */
27 #include "config.h"
28
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"
40
41 WINE_DEFAULT_DEBUG_CHANNEL(dinput);
42
43 /******************************************************************************
44  *      Various debugging tools
45  */
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
60         };
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");
65     }
66 }
67
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
91         };
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);
102                 }
103             }
104             if (type) {
105                 DPRINTF(" (unhandled: %08x)", type);
106             }
107         }
108         DPRINTF(" / Instance: ");
109         if (instance == ((DIDFT_ANYINSTANCE >> 8) & 0xFFFF)) {
110             DPRINTF("DIDFT_ANYINSTANCE");
111         } else {
112             DPRINTF("%3d", instance);
113         }
114     }
115 }
116
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")));
124     }
125 }
126
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);
131     }
132 }
133
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));
138     }
139 }
140
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
176     };
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;
182         }
183     }
184     return "Unknown GUID";
185 }
186
187 void _dump_DIDATAFORMAT(const DIDATAFORMAT *df) {
188     unsigned int i;
189
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);
194     }
195     TRACE("  - dwObjsize: %d\n", df->dwObjSize);
196     if (df->dwObjSize != sizeof(DIOBJECTDATAFORMAT)) {
197         WARN("Non-standard DIOBJECTDATAFORMAT structure size %d\n", df->dwObjSize);
198     }
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;
204     }
205     TRACE(")\n");
206     TRACE("  - dwDataSize: %d\n", df->dwDataSize);
207     TRACE("  - dwNumObjs: %d\n", df->dwNumObjs);
208     
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);
216     }
217 }
218
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;
224
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;
237
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;
243
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;
249
250                     default:
251                         memcpy((out_c + df->dt[i].offset_out), (in_c + df->dt[i].offset_in), df->dt[i].size);
252                         break;
253                 }
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;
261                         
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;
267                         
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;
273                         
274                     default:
275                         memset((out_c + df->dt[i].offset_out), 0, df->dt[i].size);
276                         break;
277                 }
278             }
279         }
280     }
281 }
282
283 void release_DataFormat(DataFormat * format)
284 {
285     TRACE("Deleting DataTransform :\n");
286
287     HeapFree(GetProcessHeap(), 0, format->dt);
288 }
289
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;
298     
299     ret = HeapAlloc(GetProcessHeap(), 0, sizeof(DataFormat));
300     
301     done = HeapAlloc(GetProcessHeap(), 0, sizeof(int) * asked_format->dwNumObjs);
302     memset(done, 0, sizeof(int) * asked_format->dwNumObjs);
303     
304     dt = HeapAlloc(GetProcessHeap(), 0, asked_format->dwNumObjs * sizeof(DataTransform));
305     
306     TRACE("Creating DataTransform :\n");
307     
308     for (i = 0; i < wine_format->dwNumObjs; i++) {
309         offset[i] = -1;
310         
311         for (j = 0; j < asked_format->dwNumObjs; j++) {
312             if (done[j] == 1)
313                 continue;
314             
315             if (/* Check if the application either requests any GUID and if not, it if matches
316                  * the GUID of the Wine object.
317                  */
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)))
321                 &&
322                 (/* Then check if it accepts any instance id, and if not, if it matches Wine's
323                   * instance id.
324                   */
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)))
328                 &&
329                 ( /* Then if the asked type matches the one Wine provides */
330                  wine_format->rgodf[i].dwType & asked_format->rgodf[j].dwType)) {
331                 
332                 done[j] = 1;
333                 
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");
342                 
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");
350                 
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;
363                 }
364                 dt[index].value = 0;
365                 next = next + dt[index].size;
366                 
367                 if (wine_format->rgodf[i].dwOfs != dt[index].offset_out)
368                     same = 0;
369                 
370                 index++;
371                 break;
372             }
373         }
374         
375         if (j == asked_format->dwNumObjs)
376             same = 0;
377     }
378     
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");
389             
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++;
398             
399             same = 0;
400         }
401     }
402     
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;
410     }
411     
412     HeapFree(GetProcessHeap(), 0, done);
413     
414     return ret;
415 }
416
417 BOOL DIEnumDevicesCallbackAtoW(LPCDIDEVICEOBJECTINSTANCEA lpddi, LPVOID lpvRef) {
418     DIDEVICEOBJECTINSTANCEW ddtmp;
419     device_enumobjects_AtoWcb_data* data;
420
421     data = (device_enumobjects_AtoWcb_data*) lpvRef;
422     
423     memset(&ddtmp, 0, sizeof(ddtmp));
424     
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);
431     
432     if (lpddi->dwSize == sizeof(DIDEVICEINSTANCEA)) {
433         /**
434          * if dwSize < sizeof(DIDEVICEINSTANCEA of DInput version >= 5)
435          *  force feedback and other newer datas aren't available
436          */
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;
446     }
447     return data->lpCallBack(&ddtmp, data->lpvRef);
448 }
449
450 /******************************************************************************
451  *      Acquire
452  */
453
454 HRESULT WINAPI IDirectInputDevice2AImpl_Acquire(LPDIRECTINPUTDEVICE8A iface)
455 {
456     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
457
458     if (This->acquired) return S_FALSE;
459     This->acquired = 1;
460
461     return DI_OK;
462 }
463
464 /******************************************************************************
465  *      Unacquire
466  */
467
468 HRESULT WINAPI IDirectInputDevice2AImpl_Unacquire(LPDIRECTINPUTDEVICE8A iface)
469 {
470     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
471
472     if (!This->acquired) return DI_NOEFFECT;
473     This->acquired = 0;
474
475     return DI_OK;
476 }
477
478 /******************************************************************************
479  *      IDirectInputDeviceA
480  */
481
482 HRESULT WINAPI IDirectInputDevice2AImpl_SetDataFormat(
483         LPDIRECTINPUTDEVICE8A iface,LPCDIDATAFORMAT df
484 ) {
485     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
486     
487     TRACE("(this=%p,%p)\n",This,df);
488     
489     _dump_DIDATAFORMAT(df);
490     
491     return DI_OK;
492 }
493
494 /******************************************************************************
495   *     SetCooperativeLevel
496   *
497   *  Set cooperative level and the source window for the events.
498   */
499 HRESULT WINAPI IDirectInputDevice2AImpl_SetCooperativeLevel(
500         LPDIRECTINPUTDEVICE8A iface, HWND hwnd, DWORD dwflags)
501 {
502     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
503
504     TRACE("(%p) %p,0x%08x\n", This, hwnd, dwflags);
505     TRACE(" cooperative level : ");
506     _dump_cooperativelevel_DI(dwflags);
507
508     if ((dwflags & (DISCL_EXCLUSIVE | DISCL_NONEXCLUSIVE)) == 0 ||
509         (dwflags & (DISCL_EXCLUSIVE | DISCL_NONEXCLUSIVE)) == (DISCL_EXCLUSIVE | DISCL_NONEXCLUSIVE) ||
510         (dwflags & (DISCL_FOREGROUND | DISCL_BACKGROUND)) == 0 ||
511         (dwflags & (DISCL_FOREGROUND | DISCL_BACKGROUND)) == (DISCL_FOREGROUND | DISCL_BACKGROUND))
512         return DIERR_INVALIDPARAM;
513
514     if (dwflags == (DISCL_NONEXCLUSIVE | DISCL_BACKGROUND))
515         hwnd = GetDesktopWindow();
516
517     if (!hwnd) return E_HANDLE;
518
519     /* For security reasons native does not allow exclusive background level
520        for mouse and keyboard only */
521     if (dwflags & DISCL_EXCLUSIVE && dwflags & DISCL_BACKGROUND &&
522         (IsEqualGUID(&This->guid, &GUID_SysMouse) ||
523          IsEqualGUID(&This->guid, &GUID_SysKeyboard)))
524         return DIERR_UNSUPPORTED;
525
526     /* Store the window which asks for the mouse */
527     This->win = hwnd;
528     This->dwCoopLevel = dwflags;
529
530     return DI_OK;
531 }
532
533 /******************************************************************************
534   *     SetEventNotification : specifies event to be sent on state change
535   */
536 HRESULT WINAPI IDirectInputDevice2AImpl_SetEventNotification(
537         LPDIRECTINPUTDEVICE8A iface, HANDLE event)
538 {
539     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
540
541     TRACE("(%p) %p\n", This, event);
542
543     This->hEvent = event;
544     return DI_OK;
545 }
546
547 ULONG WINAPI IDirectInputDevice2AImpl_Release(LPDIRECTINPUTDEVICE8A iface)
548 {
549     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
550     ULONG ref;
551     ref = InterlockedDecrement(&(This->ref));
552     if (ref == 0)
553         HeapFree(GetProcessHeap(),0,This);
554     return ref;
555 }
556
557 HRESULT WINAPI IDirectInputDevice2AImpl_QueryInterface(
558         LPDIRECTINPUTDEVICE8A iface,REFIID riid,LPVOID *ppobj
559 )
560 {
561     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
562     
563     TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
564     if (IsEqualGUID(&IID_IUnknown,riid)) {
565         IDirectInputDevice2_AddRef(iface);
566         *ppobj = This;
567         return DI_OK;
568     }
569     if (IsEqualGUID(&IID_IDirectInputDeviceA,riid)) {
570         IDirectInputDevice2_AddRef(iface);
571         *ppobj = This;
572         return DI_OK;
573     }
574     if (IsEqualGUID(&IID_IDirectInputDevice2A,riid)) {
575         IDirectInputDevice2_AddRef(iface);
576         *ppobj = This;
577         return DI_OK;
578     }
579     if (IsEqualGUID(&IID_IDirectInputDevice7A,riid)) {
580         IDirectInputDevice7_AddRef(iface);
581         *ppobj = This;
582         return DI_OK;
583     }
584     if (IsEqualGUID(&IID_IDirectInputDevice8A,riid)) {
585         IDirectInputDevice8_AddRef(iface);
586         *ppobj = This;
587         return DI_OK;
588     }
589     TRACE("Unsupported interface !\n");
590     return E_FAIL;
591 }
592
593 HRESULT WINAPI IDirectInputDevice2WImpl_QueryInterface(
594         LPDIRECTINPUTDEVICE8W iface,REFIID riid,LPVOID *ppobj
595 )
596 {
597     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
598     
599     TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
600     if (IsEqualGUID(&IID_IUnknown,riid)) {
601         IDirectInputDevice2_AddRef(iface);
602         *ppobj = This;
603         return DI_OK;
604     }
605     if (IsEqualGUID(&IID_IDirectInputDeviceW,riid)) {
606         IDirectInputDevice2_AddRef(iface);
607         *ppobj = This;
608         return DI_OK;
609     }
610     if (IsEqualGUID(&IID_IDirectInputDevice2W,riid)) {
611         IDirectInputDevice2_AddRef(iface);
612         *ppobj = This;
613         return DI_OK;
614     }
615     if (IsEqualGUID(&IID_IDirectInputDevice7W,riid)) {
616         IDirectInputDevice7_AddRef(iface);
617         *ppobj = This;
618         return DI_OK;
619     }
620     if (IsEqualGUID(&IID_IDirectInputDevice8W,riid)) {
621         IDirectInputDevice8_AddRef(iface);
622         *ppobj = This;
623         return DI_OK;
624     }
625     TRACE("Unsupported interface !\n");
626     return E_FAIL;
627 }
628
629 ULONG WINAPI IDirectInputDevice2AImpl_AddRef(
630         LPDIRECTINPUTDEVICE8A iface)
631 {
632     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
633     return InterlockedIncrement(&(This->ref));
634 }
635
636 HRESULT WINAPI IDirectInputDevice2AImpl_EnumObjects(
637         LPDIRECTINPUTDEVICE8A iface,
638         LPDIENUMDEVICEOBJECTSCALLBACKA lpCallback,
639         LPVOID lpvRef,
640         DWORD dwFlags)
641 {
642     FIXME("(this=%p,%p,%p,%08x): stub!\n", iface, lpCallback, lpvRef, dwFlags);
643     if (TRACE_ON(dinput)) {
644         DPRINTF("  - flags = ");
645         _dump_EnumObjects_flags(dwFlags);
646         DPRINTF("\n");
647     }
648     
649     return DI_OK;
650 }
651
652 HRESULT WINAPI IDirectInputDevice2WImpl_EnumObjects(
653         LPDIRECTINPUTDEVICE8W iface,
654         LPDIENUMDEVICEOBJECTSCALLBACKW lpCallback,
655         LPVOID lpvRef,
656         DWORD dwFlags)
657 {
658     FIXME("(this=%p,%p,%p,%08x): stub!\n", iface, lpCallback, lpvRef, dwFlags);
659     if (TRACE_ON(dinput)) {
660         DPRINTF("  - flags = ");
661         _dump_EnumObjects_flags(dwFlags);
662         DPRINTF("\n");
663     }
664     
665     return DI_OK;
666 }
667
668 HRESULT WINAPI IDirectInputDevice2AImpl_GetProperty(
669         LPDIRECTINPUTDEVICE8A iface,
670         REFGUID rguid,
671         LPDIPROPHEADER pdiph)
672 {
673     FIXME("(this=%p,%s,%p): stub!\n",
674           iface, debugstr_guid(rguid), pdiph);
675     
676     if (TRACE_ON(dinput))
677         _dump_DIPROPHEADER(pdiph);
678     
679     return DI_OK;
680 }
681
682 HRESULT WINAPI IDirectInputDevice2AImpl_GetObjectInfo(
683         LPDIRECTINPUTDEVICE8A iface,
684         LPDIDEVICEOBJECTINSTANCEA pdidoi,
685         DWORD dwObj,
686         DWORD dwHow)
687 {
688     FIXME("(this=%p,%p,%d,0x%08x): stub!\n",
689           iface, pdidoi, dwObj, dwHow);
690     
691     return DI_OK;
692 }
693
694 HRESULT WINAPI IDirectInputDevice2WImpl_GetObjectInfo(
695         LPDIRECTINPUTDEVICE8W iface,
696         LPDIDEVICEOBJECTINSTANCEW pdidoi,
697         DWORD dwObj,
698         DWORD dwHow)
699 {
700     FIXME("(this=%p,%p,%d,0x%08x): stub!\n",
701           iface, pdidoi, dwObj, dwHow);
702     
703     return DI_OK;
704 }
705
706 HRESULT WINAPI IDirectInputDevice2AImpl_GetDeviceInfo(
707         LPDIRECTINPUTDEVICE8A iface,
708         LPDIDEVICEINSTANCEA pdidi)
709 {
710     FIXME("(this=%p,%p): stub!\n",
711           iface, pdidi);
712     
713     return DI_OK;
714 }
715
716 HRESULT WINAPI IDirectInputDevice2WImpl_GetDeviceInfo(
717         LPDIRECTINPUTDEVICE8W iface,
718         LPDIDEVICEINSTANCEW pdidi)
719 {
720     FIXME("(this=%p,%p): stub!\n",
721           iface, pdidi);
722     
723     return DI_OK;
724 }
725
726 HRESULT WINAPI IDirectInputDevice2AImpl_RunControlPanel(
727         LPDIRECTINPUTDEVICE8A iface,
728         HWND hwndOwner,
729         DWORD dwFlags)
730 {
731     FIXME("(this=%p,%p,0x%08x): stub!\n",
732           iface, hwndOwner, dwFlags);
733
734     return DI_OK;
735 }
736
737 HRESULT WINAPI IDirectInputDevice2AImpl_Initialize(
738         LPDIRECTINPUTDEVICE8A iface,
739         HINSTANCE hinst,
740         DWORD dwVersion,
741         REFGUID rguid)
742 {
743     FIXME("(this=%p,%p,%d,%s): stub!\n",
744           iface, hinst, dwVersion, debugstr_guid(rguid));
745     return DI_OK;
746 }
747
748 /******************************************************************************
749  *      IDirectInputDevice2A
750  */
751
752 HRESULT WINAPI IDirectInputDevice2AImpl_CreateEffect(
753         LPDIRECTINPUTDEVICE8A iface,
754         REFGUID rguid,
755         LPCDIEFFECT lpeff,
756         LPDIRECTINPUTEFFECT *ppdef,
757         LPUNKNOWN pUnkOuter)
758 {
759     FIXME("(this=%p,%s,%p,%p,%p): stub!\n",
760           iface, debugstr_guid(rguid), lpeff, ppdef, pUnkOuter);
761     return DI_OK;
762 }
763
764 HRESULT WINAPI IDirectInputDevice2AImpl_EnumEffects(
765         LPDIRECTINPUTDEVICE8A iface,
766         LPDIENUMEFFECTSCALLBACKA lpCallback,
767         LPVOID lpvRef,
768         DWORD dwFlags)
769 {
770     FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
771           iface, lpCallback, lpvRef, dwFlags);
772     
773     return DI_OK;
774 }
775
776 HRESULT WINAPI IDirectInputDevice2WImpl_EnumEffects(
777         LPDIRECTINPUTDEVICE8W iface,
778         LPDIENUMEFFECTSCALLBACKW lpCallback,
779         LPVOID lpvRef,
780         DWORD dwFlags)
781 {
782     FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
783           iface, lpCallback, lpvRef, dwFlags);
784     
785     return DI_OK;
786 }
787
788 HRESULT WINAPI IDirectInputDevice2AImpl_GetEffectInfo(
789         LPDIRECTINPUTDEVICE8A iface,
790         LPDIEFFECTINFOA lpdei,
791         REFGUID rguid)
792 {
793     FIXME("(this=%p,%p,%s): stub!\n",
794           iface, lpdei, debugstr_guid(rguid));
795     return DI_OK;
796 }
797
798 HRESULT WINAPI IDirectInputDevice2WImpl_GetEffectInfo(
799         LPDIRECTINPUTDEVICE8W iface,
800         LPDIEFFECTINFOW lpdei,
801         REFGUID rguid)
802 {
803     FIXME("(this=%p,%p,%s): stub!\n",
804           iface, lpdei, debugstr_guid(rguid));
805     return DI_OK;
806 }
807
808 HRESULT WINAPI IDirectInputDevice2AImpl_GetForceFeedbackState(
809         LPDIRECTINPUTDEVICE8A iface,
810         LPDWORD pdwOut)
811 {
812     FIXME("(this=%p,%p): stub!\n",
813           iface, pdwOut);
814     return DI_OK;
815 }
816
817 HRESULT WINAPI IDirectInputDevice2AImpl_SendForceFeedbackCommand(
818         LPDIRECTINPUTDEVICE8A iface,
819         DWORD dwFlags)
820 {
821     FIXME("(this=%p,0x%08x): stub!\n",
822           iface, dwFlags);
823     return DI_OK;
824 }
825
826 HRESULT WINAPI IDirectInputDevice2AImpl_EnumCreatedEffectObjects(
827         LPDIRECTINPUTDEVICE8A iface,
828         LPDIENUMCREATEDEFFECTOBJECTSCALLBACK lpCallback,
829         LPVOID lpvRef,
830         DWORD dwFlags)
831 {
832     FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
833           iface, lpCallback, lpvRef, dwFlags);
834     return DI_OK;
835 }
836
837 HRESULT WINAPI IDirectInputDevice2AImpl_Escape(
838         LPDIRECTINPUTDEVICE8A iface,
839         LPDIEFFESCAPE lpDIEEsc)
840 {
841     FIXME("(this=%p,%p): stub!\n",
842           iface, lpDIEEsc);
843     return DI_OK;
844 }
845
846 HRESULT WINAPI IDirectInputDevice2AImpl_Poll(
847         LPDIRECTINPUTDEVICE8A iface)
848 {
849     /* Because wine devices do not need to be polled, just return DI_NOEFFECT */
850     return DI_NOEFFECT;
851 }
852
853 HRESULT WINAPI IDirectInputDevice2AImpl_SendDeviceData(
854         LPDIRECTINPUTDEVICE8A iface,
855         DWORD cbObjectData,
856         LPCDIDEVICEOBJECTDATA rgdod,
857         LPDWORD pdwInOut,
858         DWORD dwFlags)
859 {
860     FIXME("(this=%p,0x%08x,%p,%p,0x%08x): stub!\n",
861           iface, cbObjectData, rgdod, pdwInOut, dwFlags);
862     
863     return DI_OK;
864 }
865
866 HRESULT WINAPI IDirectInputDevice7AImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8A iface,
867                                                           LPCSTR lpszFileName,
868                                                           LPDIENUMEFFECTSINFILECALLBACK pec,
869                                                           LPVOID pvRef,
870                                                           DWORD dwFlags)
871 {
872     FIXME("(%p)->(%s,%p,%p,%08x): stub !\n", iface, lpszFileName, pec, pvRef, dwFlags);
873     
874     return DI_OK;
875 }
876
877 HRESULT WINAPI IDirectInputDevice7WImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8W iface,
878                                                           LPCWSTR lpszFileName,
879                                                           LPDIENUMEFFECTSINFILECALLBACK pec,
880                                                           LPVOID pvRef,
881                                                           DWORD dwFlags)
882 {
883     FIXME("(%p)->(%s,%p,%p,%08x): stub !\n", iface, debugstr_w(lpszFileName), pec, pvRef, dwFlags);
884     
885     return DI_OK;
886 }
887
888 HRESULT WINAPI IDirectInputDevice7AImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8A iface,
889                                                           LPCSTR lpszFileName,
890                                                           DWORD dwEntries,
891                                                           LPDIFILEEFFECT rgDiFileEft,
892                                                           DWORD dwFlags)
893 {
894     FIXME("(%p)->(%s,%08x,%p,%08x): stub !\n", iface, lpszFileName, dwEntries, rgDiFileEft, dwFlags);
895     
896     return DI_OK;
897 }
898
899 HRESULT WINAPI IDirectInputDevice7WImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8W iface,
900                                                           LPCWSTR lpszFileName,
901                                                           DWORD dwEntries,
902                                                           LPDIFILEEFFECT rgDiFileEft,
903                                                           DWORD dwFlags)
904 {
905     FIXME("(%p)->(%s,%08x,%p,%08x): stub !\n", iface, debugstr_w(lpszFileName), dwEntries, rgDiFileEft, dwFlags);
906     
907     return DI_OK;
908 }
909
910 HRESULT WINAPI IDirectInputDevice8AImpl_BuildActionMap(LPDIRECTINPUTDEVICE8A iface,
911                                                        LPDIACTIONFORMATA lpdiaf,
912                                                        LPCSTR lpszUserName,
913                                                        DWORD dwFlags)
914 {
915     FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, lpszUserName, dwFlags);
916     
917     return DI_OK;
918 }
919
920 HRESULT WINAPI IDirectInputDevice8WImpl_BuildActionMap(LPDIRECTINPUTDEVICE8W iface,
921                                                        LPDIACTIONFORMATW lpdiaf,
922                                                        LPCWSTR lpszUserName,
923                                                        DWORD dwFlags)
924 {
925     FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
926   
927     return DI_OK;
928 }
929
930 HRESULT WINAPI IDirectInputDevice8AImpl_SetActionMap(LPDIRECTINPUTDEVICE8A iface,
931                                                      LPDIACTIONFORMATA lpdiaf,
932                                                      LPCSTR lpszUserName,
933                                                      DWORD dwFlags)
934 {
935     FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, lpszUserName, dwFlags);
936     
937     return DI_OK;
938 }
939
940 HRESULT WINAPI IDirectInputDevice8WImpl_SetActionMap(LPDIRECTINPUTDEVICE8W iface,
941                                                      LPDIACTIONFORMATW lpdiaf,
942                                                      LPCWSTR lpszUserName,
943                                                      DWORD dwFlags)
944 {
945     FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
946     
947     return DI_OK;
948 }
949
950 HRESULT WINAPI IDirectInputDevice8AImpl_GetImageInfo(LPDIRECTINPUTDEVICE8A iface,
951                                                      LPDIDEVICEIMAGEINFOHEADERA lpdiDevImageInfoHeader)
952 {
953     FIXME("(%p)->(%p): stub !\n", iface, lpdiDevImageInfoHeader);
954     
955     return DI_OK;
956 }
957
958 HRESULT WINAPI IDirectInputDevice8WImpl_GetImageInfo(LPDIRECTINPUTDEVICE8W iface,
959                                                      LPDIDEVICEIMAGEINFOHEADERW lpdiDevImageInfoHeader)
960 {
961     FIXME("(%p)->(%p): stub !\n", iface, lpdiDevImageInfoHeader);
962     
963     return DI_OK;
964 }