mshtml: Print wine_gecko version in load_wine_gecko.
[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  *      IDirectInputDeviceA
452  */
453
454 HRESULT WINAPI IDirectInputDevice2AImpl_SetDataFormat(
455         LPDIRECTINPUTDEVICE8A iface,LPCDIDATAFORMAT df
456 ) {
457     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
458     
459     TRACE("(this=%p,%p)\n",This,df);
460     
461     _dump_DIDATAFORMAT(df);
462     
463     return DI_OK;
464 }
465
466 /******************************************************************************
467   *     SetCooperativeLevel
468   *
469   *  Set cooperative level and the source window for the events.
470   */
471 HRESULT WINAPI IDirectInputDevice2AImpl_SetCooperativeLevel(
472         LPDIRECTINPUTDEVICE8A iface, HWND hwnd, DWORD dwflags)
473 {
474     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
475
476     TRACE("(%p) %p,0x%08x\n", This, hwnd, dwflags);
477     TRACE(" cooperative level : ");
478     _dump_cooperativelevel_DI(dwflags);
479
480     if ((dwflags & (DISCL_EXCLUSIVE | DISCL_NONEXCLUSIVE)) == 0 ||
481         (dwflags & (DISCL_EXCLUSIVE | DISCL_NONEXCLUSIVE)) == (DISCL_EXCLUSIVE | DISCL_NONEXCLUSIVE) ||
482         (dwflags & (DISCL_FOREGROUND | DISCL_BACKGROUND)) == 0 ||
483         (dwflags & (DISCL_FOREGROUND | DISCL_BACKGROUND)) == (DISCL_FOREGROUND | DISCL_BACKGROUND))
484         return DIERR_INVALIDPARAM;
485
486     if (dwflags == (DISCL_NONEXCLUSIVE | DISCL_BACKGROUND))
487         hwnd = GetDesktopWindow();
488
489     if (!hwnd) return E_HANDLE;
490
491     /* For security reasons native does not allow exclusive background level
492        for mouse and keyboard only */
493     if (dwflags & DISCL_EXCLUSIVE && dwflags & DISCL_BACKGROUND &&
494         (IsEqualGUID(&This->guid, &GUID_SysMouse) ||
495          IsEqualGUID(&This->guid, &GUID_SysKeyboard)))
496         return DIERR_UNSUPPORTED;
497
498     /* Store the window which asks for the mouse */
499     This->win = hwnd;
500     This->dwCoopLevel = dwflags;
501
502     return DI_OK;
503 }
504
505 /******************************************************************************
506   *     SetEventNotification : specifies event to be sent on state change
507   */
508 HRESULT WINAPI IDirectInputDevice2AImpl_SetEventNotification(
509         LPDIRECTINPUTDEVICE8A iface, HANDLE event)
510 {
511     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
512
513     TRACE("(%p) %p\n", This, event);
514
515     This->hEvent = event;
516     return DI_OK;
517 }
518
519 ULONG WINAPI IDirectInputDevice2AImpl_Release(LPDIRECTINPUTDEVICE8A iface)
520 {
521     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
522     ULONG ref;
523     ref = InterlockedDecrement(&(This->ref));
524     if (ref == 0)
525         HeapFree(GetProcessHeap(),0,This);
526     return ref;
527 }
528
529 HRESULT WINAPI IDirectInputDevice2AImpl_QueryInterface(
530         LPDIRECTINPUTDEVICE8A iface,REFIID riid,LPVOID *ppobj
531 )
532 {
533     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
534     
535     TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
536     if (IsEqualGUID(&IID_IUnknown,riid)) {
537         IDirectInputDevice2_AddRef(iface);
538         *ppobj = This;
539         return DI_OK;
540     }
541     if (IsEqualGUID(&IID_IDirectInputDeviceA,riid)) {
542         IDirectInputDevice2_AddRef(iface);
543         *ppobj = This;
544         return DI_OK;
545     }
546     if (IsEqualGUID(&IID_IDirectInputDevice2A,riid)) {
547         IDirectInputDevice2_AddRef(iface);
548         *ppobj = This;
549         return DI_OK;
550     }
551     if (IsEqualGUID(&IID_IDirectInputDevice7A,riid)) {
552         IDirectInputDevice7_AddRef(iface);
553         *ppobj = This;
554         return DI_OK;
555     }
556     if (IsEqualGUID(&IID_IDirectInputDevice8A,riid)) {
557         IDirectInputDevice8_AddRef(iface);
558         *ppobj = This;
559         return DI_OK;
560     }
561     TRACE("Unsupported interface !\n");
562     return E_FAIL;
563 }
564
565 HRESULT WINAPI IDirectInputDevice2WImpl_QueryInterface(
566         LPDIRECTINPUTDEVICE8W iface,REFIID riid,LPVOID *ppobj
567 )
568 {
569     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
570     
571     TRACE("(this=%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
572     if (IsEqualGUID(&IID_IUnknown,riid)) {
573         IDirectInputDevice2_AddRef(iface);
574         *ppobj = This;
575         return DI_OK;
576     }
577     if (IsEqualGUID(&IID_IDirectInputDeviceW,riid)) {
578         IDirectInputDevice2_AddRef(iface);
579         *ppobj = This;
580         return DI_OK;
581     }
582     if (IsEqualGUID(&IID_IDirectInputDevice2W,riid)) {
583         IDirectInputDevice2_AddRef(iface);
584         *ppobj = This;
585         return DI_OK;
586     }
587     if (IsEqualGUID(&IID_IDirectInputDevice7W,riid)) {
588         IDirectInputDevice7_AddRef(iface);
589         *ppobj = This;
590         return DI_OK;
591     }
592     if (IsEqualGUID(&IID_IDirectInputDevice8W,riid)) {
593         IDirectInputDevice8_AddRef(iface);
594         *ppobj = This;
595         return DI_OK;
596     }
597     TRACE("Unsupported interface !\n");
598     return E_FAIL;
599 }
600
601 ULONG WINAPI IDirectInputDevice2AImpl_AddRef(
602         LPDIRECTINPUTDEVICE8A iface)
603 {
604     IDirectInputDevice2AImpl *This = (IDirectInputDevice2AImpl *)iface;
605     return InterlockedIncrement(&(This->ref));
606 }
607
608 HRESULT WINAPI IDirectInputDevice2AImpl_EnumObjects(
609         LPDIRECTINPUTDEVICE8A iface,
610         LPDIENUMDEVICEOBJECTSCALLBACKA lpCallback,
611         LPVOID lpvRef,
612         DWORD dwFlags)
613 {
614     FIXME("(this=%p,%p,%p,%08x): stub!\n", iface, lpCallback, lpvRef, dwFlags);
615     if (TRACE_ON(dinput)) {
616         DPRINTF("  - flags = ");
617         _dump_EnumObjects_flags(dwFlags);
618         DPRINTF("\n");
619     }
620     
621     return DI_OK;
622 }
623
624 HRESULT WINAPI IDirectInputDevice2WImpl_EnumObjects(
625         LPDIRECTINPUTDEVICE8W iface,
626         LPDIENUMDEVICEOBJECTSCALLBACKW lpCallback,
627         LPVOID lpvRef,
628         DWORD dwFlags)
629 {
630     FIXME("(this=%p,%p,%p,%08x): stub!\n", iface, lpCallback, lpvRef, dwFlags);
631     if (TRACE_ON(dinput)) {
632         DPRINTF("  - flags = ");
633         _dump_EnumObjects_flags(dwFlags);
634         DPRINTF("\n");
635     }
636     
637     return DI_OK;
638 }
639
640 HRESULT WINAPI IDirectInputDevice2AImpl_GetProperty(
641         LPDIRECTINPUTDEVICE8A iface,
642         REFGUID rguid,
643         LPDIPROPHEADER pdiph)
644 {
645     FIXME("(this=%p,%s,%p): stub!\n",
646           iface, debugstr_guid(rguid), pdiph);
647     
648     if (TRACE_ON(dinput))
649         _dump_DIPROPHEADER(pdiph);
650     
651     return DI_OK;
652 }
653
654 HRESULT WINAPI IDirectInputDevice2AImpl_GetObjectInfo(
655         LPDIRECTINPUTDEVICE8A iface,
656         LPDIDEVICEOBJECTINSTANCEA pdidoi,
657         DWORD dwObj,
658         DWORD dwHow)
659 {
660     FIXME("(this=%p,%p,%d,0x%08x): stub!\n",
661           iface, pdidoi, dwObj, dwHow);
662     
663     return DI_OK;
664 }
665
666 HRESULT WINAPI IDirectInputDevice2WImpl_GetObjectInfo(
667         LPDIRECTINPUTDEVICE8W iface,
668         LPDIDEVICEOBJECTINSTANCEW pdidoi,
669         DWORD dwObj,
670         DWORD dwHow)
671 {
672     FIXME("(this=%p,%p,%d,0x%08x): stub!\n",
673           iface, pdidoi, dwObj, dwHow);
674     
675     return DI_OK;
676 }
677
678 HRESULT WINAPI IDirectInputDevice2AImpl_GetDeviceInfo(
679         LPDIRECTINPUTDEVICE8A iface,
680         LPDIDEVICEINSTANCEA pdidi)
681 {
682     FIXME("(this=%p,%p): stub!\n",
683           iface, pdidi);
684     
685     return DI_OK;
686 }
687
688 HRESULT WINAPI IDirectInputDevice2WImpl_GetDeviceInfo(
689         LPDIRECTINPUTDEVICE8W iface,
690         LPDIDEVICEINSTANCEW pdidi)
691 {
692     FIXME("(this=%p,%p): stub!\n",
693           iface, pdidi);
694     
695     return DI_OK;
696 }
697
698 HRESULT WINAPI IDirectInputDevice2AImpl_RunControlPanel(
699         LPDIRECTINPUTDEVICE8A iface,
700         HWND hwndOwner,
701         DWORD dwFlags)
702 {
703     FIXME("(this=%p,%p,0x%08x): stub!\n",
704           iface, hwndOwner, dwFlags);
705
706     return DI_OK;
707 }
708
709 HRESULT WINAPI IDirectInputDevice2AImpl_Initialize(
710         LPDIRECTINPUTDEVICE8A iface,
711         HINSTANCE hinst,
712         DWORD dwVersion,
713         REFGUID rguid)
714 {
715     FIXME("(this=%p,%p,%d,%s): stub!\n",
716           iface, hinst, dwVersion, debugstr_guid(rguid));
717     return DI_OK;
718 }
719
720 /******************************************************************************
721  *      IDirectInputDevice2A
722  */
723
724 HRESULT WINAPI IDirectInputDevice2AImpl_CreateEffect(
725         LPDIRECTINPUTDEVICE8A iface,
726         REFGUID rguid,
727         LPCDIEFFECT lpeff,
728         LPDIRECTINPUTEFFECT *ppdef,
729         LPUNKNOWN pUnkOuter)
730 {
731     FIXME("(this=%p,%s,%p,%p,%p): stub!\n",
732           iface, debugstr_guid(rguid), lpeff, ppdef, pUnkOuter);
733     return DI_OK;
734 }
735
736 HRESULT WINAPI IDirectInputDevice2AImpl_EnumEffects(
737         LPDIRECTINPUTDEVICE8A iface,
738         LPDIENUMEFFECTSCALLBACKA lpCallback,
739         LPVOID lpvRef,
740         DWORD dwFlags)
741 {
742     FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
743           iface, lpCallback, lpvRef, dwFlags);
744     
745     return DI_OK;
746 }
747
748 HRESULT WINAPI IDirectInputDevice2WImpl_EnumEffects(
749         LPDIRECTINPUTDEVICE8W iface,
750         LPDIENUMEFFECTSCALLBACKW lpCallback,
751         LPVOID lpvRef,
752         DWORD dwFlags)
753 {
754     FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
755           iface, lpCallback, lpvRef, dwFlags);
756     
757     return DI_OK;
758 }
759
760 HRESULT WINAPI IDirectInputDevice2AImpl_GetEffectInfo(
761         LPDIRECTINPUTDEVICE8A iface,
762         LPDIEFFECTINFOA lpdei,
763         REFGUID rguid)
764 {
765     FIXME("(this=%p,%p,%s): stub!\n",
766           iface, lpdei, debugstr_guid(rguid));
767     return DI_OK;
768 }
769
770 HRESULT WINAPI IDirectInputDevice2WImpl_GetEffectInfo(
771         LPDIRECTINPUTDEVICE8W iface,
772         LPDIEFFECTINFOW lpdei,
773         REFGUID rguid)
774 {
775     FIXME("(this=%p,%p,%s): stub!\n",
776           iface, lpdei, debugstr_guid(rguid));
777     return DI_OK;
778 }
779
780 HRESULT WINAPI IDirectInputDevice2AImpl_GetForceFeedbackState(
781         LPDIRECTINPUTDEVICE8A iface,
782         LPDWORD pdwOut)
783 {
784     FIXME("(this=%p,%p): stub!\n",
785           iface, pdwOut);
786     return DI_OK;
787 }
788
789 HRESULT WINAPI IDirectInputDevice2AImpl_SendForceFeedbackCommand(
790         LPDIRECTINPUTDEVICE8A iface,
791         DWORD dwFlags)
792 {
793     FIXME("(this=%p,0x%08x): stub!\n",
794           iface, dwFlags);
795     return DI_OK;
796 }
797
798 HRESULT WINAPI IDirectInputDevice2AImpl_EnumCreatedEffectObjects(
799         LPDIRECTINPUTDEVICE8A iface,
800         LPDIENUMCREATEDEFFECTOBJECTSCALLBACK lpCallback,
801         LPVOID lpvRef,
802         DWORD dwFlags)
803 {
804     FIXME("(this=%p,%p,%p,0x%08x): stub!\n",
805           iface, lpCallback, lpvRef, dwFlags);
806     return DI_OK;
807 }
808
809 HRESULT WINAPI IDirectInputDevice2AImpl_Escape(
810         LPDIRECTINPUTDEVICE8A iface,
811         LPDIEFFESCAPE lpDIEEsc)
812 {
813     FIXME("(this=%p,%p): stub!\n",
814           iface, lpDIEEsc);
815     return DI_OK;
816 }
817
818 HRESULT WINAPI IDirectInputDevice2AImpl_Poll(
819         LPDIRECTINPUTDEVICE8A iface)
820 {
821     /* Because wine devices do not need to be polled, just return DI_NOEFFECT */
822     return DI_NOEFFECT;
823 }
824
825 HRESULT WINAPI IDirectInputDevice2AImpl_SendDeviceData(
826         LPDIRECTINPUTDEVICE8A iface,
827         DWORD cbObjectData,
828         LPCDIDEVICEOBJECTDATA rgdod,
829         LPDWORD pdwInOut,
830         DWORD dwFlags)
831 {
832     FIXME("(this=%p,0x%08x,%p,%p,0x%08x): stub!\n",
833           iface, cbObjectData, rgdod, pdwInOut, dwFlags);
834     
835     return DI_OK;
836 }
837
838 HRESULT WINAPI IDirectInputDevice7AImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8A iface,
839                                                           LPCSTR lpszFileName,
840                                                           LPDIENUMEFFECTSINFILECALLBACK pec,
841                                                           LPVOID pvRef,
842                                                           DWORD dwFlags)
843 {
844     FIXME("(%p)->(%s,%p,%p,%08x): stub !\n", iface, lpszFileName, pec, pvRef, dwFlags);
845     
846     return DI_OK;
847 }
848
849 HRESULT WINAPI IDirectInputDevice7WImpl_EnumEffectsInFile(LPDIRECTINPUTDEVICE8W iface,
850                                                           LPCWSTR lpszFileName,
851                                                           LPDIENUMEFFECTSINFILECALLBACK pec,
852                                                           LPVOID pvRef,
853                                                           DWORD dwFlags)
854 {
855     FIXME("(%p)->(%s,%p,%p,%08x): stub !\n", iface, debugstr_w(lpszFileName), pec, pvRef, dwFlags);
856     
857     return DI_OK;
858 }
859
860 HRESULT WINAPI IDirectInputDevice7AImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8A iface,
861                                                           LPCSTR lpszFileName,
862                                                           DWORD dwEntries,
863                                                           LPDIFILEEFFECT rgDiFileEft,
864                                                           DWORD dwFlags)
865 {
866     FIXME("(%p)->(%s,%08x,%p,%08x): stub !\n", iface, lpszFileName, dwEntries, rgDiFileEft, dwFlags);
867     
868     return DI_OK;
869 }
870
871 HRESULT WINAPI IDirectInputDevice7WImpl_WriteEffectToFile(LPDIRECTINPUTDEVICE8W iface,
872                                                           LPCWSTR lpszFileName,
873                                                           DWORD dwEntries,
874                                                           LPDIFILEEFFECT rgDiFileEft,
875                                                           DWORD dwFlags)
876 {
877     FIXME("(%p)->(%s,%08x,%p,%08x): stub !\n", iface, debugstr_w(lpszFileName), dwEntries, rgDiFileEft, dwFlags);
878     
879     return DI_OK;
880 }
881
882 HRESULT WINAPI IDirectInputDevice8AImpl_BuildActionMap(LPDIRECTINPUTDEVICE8A iface,
883                                                        LPDIACTIONFORMATA lpdiaf,
884                                                        LPCSTR lpszUserName,
885                                                        DWORD dwFlags)
886 {
887     FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, lpszUserName, dwFlags);
888     
889     return DI_OK;
890 }
891
892 HRESULT WINAPI IDirectInputDevice8WImpl_BuildActionMap(LPDIRECTINPUTDEVICE8W iface,
893                                                        LPDIACTIONFORMATW lpdiaf,
894                                                        LPCWSTR lpszUserName,
895                                                        DWORD dwFlags)
896 {
897     FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
898   
899     return DI_OK;
900 }
901
902 HRESULT WINAPI IDirectInputDevice8AImpl_SetActionMap(LPDIRECTINPUTDEVICE8A iface,
903                                                      LPDIACTIONFORMATA lpdiaf,
904                                                      LPCSTR lpszUserName,
905                                                      DWORD dwFlags)
906 {
907     FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, lpszUserName, dwFlags);
908     
909     return DI_OK;
910 }
911
912 HRESULT WINAPI IDirectInputDevice8WImpl_SetActionMap(LPDIRECTINPUTDEVICE8W iface,
913                                                      LPDIACTIONFORMATW lpdiaf,
914                                                      LPCWSTR lpszUserName,
915                                                      DWORD dwFlags)
916 {
917     FIXME("(%p)->(%p,%s,%08x): stub !\n", iface, lpdiaf, debugstr_w(lpszUserName), dwFlags);
918     
919     return DI_OK;
920 }
921
922 HRESULT WINAPI IDirectInputDevice8AImpl_GetImageInfo(LPDIRECTINPUTDEVICE8A iface,
923                                                      LPDIDEVICEIMAGEINFOHEADERA lpdiDevImageInfoHeader)
924 {
925     FIXME("(%p)->(%p): stub !\n", iface, lpdiDevImageInfoHeader);
926     
927     return DI_OK;
928 }
929
930 HRESULT WINAPI IDirectInputDevice8WImpl_GetImageInfo(LPDIRECTINPUTDEVICE8W iface,
931                                                      LPDIDEVICEIMAGEINFOHEADERW lpdiDevImageInfoHeader)
932 {
933     FIXME("(%p)->(%p): stub !\n", iface, lpdiDevImageInfoHeader);
934     
935     return DI_OK;
936 }