3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998,1999 Lionel Ulmer
5 * Copyright 2000-2002 TransGaming Technologies Inc.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * - Tomb Raider 2 Demo:
25 * Playable using keyboard only.
26 * - WingCommander Prophecy Demo:
27 * Doesn't get Input Focus.
29 * - Fallout : works great in X and DGA mode
39 #include "wine/debug.h"
40 #include "wine/unicode.h"
45 #include "dinput_private.h"
47 WINE_DEFAULT_DEBUG_CHANNEL(dinput
);
49 static const IDirectInput7AVtbl ddi7avt
;
50 static const IDirectInput7WVtbl ddi7wvt
;
51 static const IDirectInput8AVtbl ddi8avt
;
52 static const IDirectInput8WVtbl ddi8wvt
;
54 static const struct dinput_device
*dinput_devices
[] =
58 &joystick_linuxinput_device
,
59 &joystick_linux_device
61 #define NB_DINPUT_DEVICES (sizeof(dinput_devices)/sizeof(dinput_devices[0]))
63 HINSTANCE DINPUT_instance
= NULL
;
65 BOOL WINAPI
DllMain( HINSTANCE inst
, DWORD reason
, LPVOID reserv
)
69 case DLL_PROCESS_ATTACH
:
70 DisableThreadLibraryCalls(inst
);
71 DINPUT_instance
= inst
;
73 case DLL_PROCESS_DETACH
:
80 /******************************************************************************
81 * DirectInputCreateEx (DINPUT.@)
83 HRESULT WINAPI
DirectInputCreateEx(
84 HINSTANCE hinst
, DWORD dwVersion
, REFIID riid
, LPVOID
*ppDI
,
87 IDirectInputImpl
* This
;
89 TRACE("(%p,%04lx,%s,%p,%p)\n", hinst
,dwVersion
,debugstr_guid(riid
),ppDI
,punkOuter
);
91 if (IsEqualGUID(&IID_IDirectInputA
,riid
) ||
92 IsEqualGUID(&IID_IDirectInput2A
,riid
) ||
93 IsEqualGUID(&IID_IDirectInput7A
,riid
)) {
94 This
= HeapAlloc(GetProcessHeap(),0,sizeof(IDirectInputImpl
));
95 This
->lpVtbl
= &ddi7avt
;
97 This
->dwVersion
= dwVersion
;
103 if (IsEqualGUID(&IID_IDirectInputW
,riid
) ||
104 IsEqualGUID(&IID_IDirectInput2W
,riid
) ||
105 IsEqualGUID(&IID_IDirectInput7W
,riid
)) {
106 This
= HeapAlloc(GetProcessHeap(),0,sizeof(IDirectInputImpl
));
107 This
->lpVtbl
= &ddi7wvt
;
109 This
->dwVersion
= dwVersion
;
115 if (IsEqualGUID(&IID_IDirectInput8A
,riid
)) {
116 This
= HeapAlloc(GetProcessHeap(),0,sizeof(IDirectInputImpl
));
117 This
->lpVtbl
= &ddi8avt
;
119 This
->dwVersion
= dwVersion
;
125 if (IsEqualGUID(&IID_IDirectInput8W
,riid
)) {
126 This
= HeapAlloc(GetProcessHeap(),0,sizeof(IDirectInputImpl
));
127 This
->lpVtbl
= &ddi8wvt
;
129 This
->dwVersion
= dwVersion
;
135 return DIERR_OLDDIRECTINPUTVERSION
;
138 /******************************************************************************
139 * DirectInputCreateA (DINPUT.@)
141 HRESULT WINAPI
DirectInputCreateA(HINSTANCE hinst
, DWORD dwVersion
, LPDIRECTINPUTA
*ppDI
, LPUNKNOWN punkOuter
)
143 IDirectInputImpl
* This
;
144 TRACE("(%p,%04lx,%p,%p)\n", hinst
,dwVersion
,ppDI
,punkOuter
);
145 This
= HeapAlloc(GetProcessHeap(),0,sizeof(IDirectInputImpl
));
146 This
->lpVtbl
= &ddi7avt
;
148 This
->dwVersion
= dwVersion
;
149 *ppDI
= (IDirectInputA
*)This
;
154 /******************************************************************************
155 * DirectInputCreateW (DINPUT.@)
157 HRESULT WINAPI
DirectInputCreateW(HINSTANCE hinst
, DWORD dwVersion
, LPDIRECTINPUTW
*ppDI
, LPUNKNOWN punkOuter
)
159 IDirectInputImpl
* This
;
160 TRACE("(%p,%04lx,%p,%p)\n", hinst
,dwVersion
,ppDI
,punkOuter
);
161 This
= HeapAlloc(GetProcessHeap(),0,sizeof(IDirectInputImpl
));
162 This
->lpVtbl
= &ddi7wvt
;
164 This
->dwVersion
= dwVersion
;
165 *ppDI
= (IDirectInputW
*)This
;
169 static const char *_dump_DIDEVTYPE_value(DWORD dwDevType
) {
171 case 0: return "All devices";
172 case DIDEVTYPE_MOUSE
: return "DIDEVTYPE_MOUSE";
173 case DIDEVTYPE_KEYBOARD
: return "DIDEVTYPE_KEYBOARD";
174 case DIDEVTYPE_JOYSTICK
: return "DIDEVTYPE_JOYSTICK";
175 case DIDEVTYPE_DEVICE
: return "DIDEVTYPE_DEVICE";
176 default: return "Unknown";
180 static void _dump_EnumDevices_dwFlags(DWORD dwFlags
) {
181 if (TRACE_ON(dinput
)) {
183 static const struct {
187 #define FE(x) { x, #x}
188 FE(DIEDFL_ALLDEVICES
),
189 FE(DIEDFL_ATTACHEDONLY
),
190 FE(DIEDFL_FORCEFEEDBACK
),
191 FE(DIEDFL_INCLUDEALIASES
),
192 FE(DIEDFL_INCLUDEPHANTOMS
)
196 DPRINTF("DIEDFL_ALLDEVICES");
199 for (i
= 0; i
< (sizeof(flags
) / sizeof(flags
[0])); i
++)
200 if (flags
[i
].mask
& dwFlags
)
201 DPRINTF("%s ",flags
[i
].name
);
205 /******************************************************************************
206 * IDirectInputA_EnumDevices
208 static HRESULT WINAPI
IDirectInputAImpl_EnumDevices(
209 LPDIRECTINPUT7A iface
, DWORD dwDevType
, LPDIENUMDEVICESCALLBACKA lpCallback
,
210 LPVOID pvRef
, DWORD dwFlags
)
212 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
213 DIDEVICEINSTANCEA devInstance
;
216 TRACE("(this=%p,0x%04lx '%s',%p,%p,%04lx)\n",
217 This
, dwDevType
, _dump_DIDEVTYPE_value(dwDevType
),
218 lpCallback
, pvRef
, dwFlags
);
219 TRACE(" flags: "); _dump_EnumDevices_dwFlags(dwFlags
); TRACE("\n");
221 for (i
= 0; i
< NB_DINPUT_DEVICES
; i
++) {
222 if (!dinput_devices
[i
]->enum_deviceA
) continue;
223 for (j
= 0, r
= -1; r
!= 0; j
++) {
224 devInstance
.dwSize
= sizeof(devInstance
);
225 TRACE(" - checking device %d ('%s')\n", i
, dinput_devices
[i
]->name
);
226 if ((r
= dinput_devices
[i
]->enum_deviceA(dwDevType
, dwFlags
, &devInstance
, This
->dwVersion
, j
))) {
227 if (lpCallback(&devInstance
,pvRef
) == DIENUM_STOP
)
235 /******************************************************************************
236 * IDirectInputW_EnumDevices
238 static HRESULT WINAPI
IDirectInputWImpl_EnumDevices(
239 LPDIRECTINPUT7W iface
, DWORD dwDevType
, LPDIENUMDEVICESCALLBACKW lpCallback
,
240 LPVOID pvRef
, DWORD dwFlags
)
242 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
243 DIDEVICEINSTANCEW devInstance
;
246 TRACE("(this=%p,0x%04lx '%s',%p,%p,%04lx)\n",
247 This
, dwDevType
, _dump_DIDEVTYPE_value(dwDevType
),
248 lpCallback
, pvRef
, dwFlags
);
249 TRACE(" flags: "); _dump_EnumDevices_dwFlags(dwFlags
); TRACE("\n");
251 for (i
= 0; i
< NB_DINPUT_DEVICES
; i
++) {
252 if (!dinput_devices
[i
]->enum_deviceW
) continue;
253 for (j
= 0, r
= -1; r
!= 0; j
++) {
254 devInstance
.dwSize
= sizeof(devInstance
);
255 TRACE(" - checking device %d ('%s')\n", i
, dinput_devices
[i
]->name
);
256 if ((r
= dinput_devices
[i
]->enum_deviceW(dwDevType
, dwFlags
, &devInstance
, This
->dwVersion
, j
))) {
257 if (lpCallback(&devInstance
,pvRef
) == DIENUM_STOP
)
266 static ULONG WINAPI
IDirectInputAImpl_AddRef(LPDIRECTINPUT7A iface
)
268 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
269 return InterlockedIncrement((&This
->ref
));
272 static ULONG WINAPI
IDirectInputAImpl_Release(LPDIRECTINPUT7A iface
)
274 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
276 ref
= InterlockedDecrement(&(This
->ref
));
278 HeapFree(GetProcessHeap(),0,This
);
282 static HRESULT WINAPI
IDirectInputAImpl_QueryInterface(LPDIRECTINPUT7A iface
, REFIID riid
, LPVOID
*ppobj
) {
283 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
285 TRACE("(this=%p,%s,%p)\n",This
,debugstr_guid(riid
),ppobj
);
286 if (IsEqualGUID(&IID_IUnknown
,riid
) ||
287 IsEqualGUID(&IID_IDirectInputA
,riid
) ||
288 IsEqualGUID(&IID_IDirectInput2A
,riid
) ||
289 IsEqualGUID(&IID_IDirectInput7A
,riid
)) {
290 IDirectInputAImpl_AddRef(iface
);
294 TRACE("Unsupported interface !\n");
298 static HRESULT WINAPI
IDirectInputWImpl_QueryInterface(LPDIRECTINPUT7W iface
, REFIID riid
, LPVOID
*ppobj
) {
299 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
301 TRACE("(this=%p,%s,%p)\n",This
,debugstr_guid(riid
),ppobj
);
302 if (IsEqualGUID(&IID_IUnknown
,riid
) ||
303 IsEqualGUID(&IID_IDirectInputW
,riid
) ||
304 IsEqualGUID(&IID_IDirectInput2W
,riid
) ||
305 IsEqualGUID(&IID_IDirectInput7W
,riid
)) {
306 IDirectInputAImpl_AddRef((LPDIRECTINPUT7A
) iface
);
310 TRACE("Unsupported interface !\n");
314 static HRESULT WINAPI
IDirectInputAImpl_CreateDevice(
315 LPDIRECTINPUT7A iface
,REFGUID rguid
,LPDIRECTINPUTDEVICEA
* pdev
,
318 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
319 HRESULT ret_value
= DIERR_DEVICENOTREG
;
322 TRACE("(this=%p,%s,%p,%p)\n",This
,debugstr_guid(rguid
),pdev
,punk
);
325 WARN("invalid pointer: pdev == NULL\n");
330 WARN("invalid pointer: rguid == NULL\n");
334 /* Loop on all the devices to see if anyone matches the given GUID */
335 for (i
= 0; i
< NB_DINPUT_DEVICES
; i
++) {
337 if (!dinput_devices
[i
]->create_deviceA
) continue;
338 if ((ret
= dinput_devices
[i
]->create_deviceA(This
, rguid
, NULL
, pdev
)) == DI_OK
)
341 if (ret
== DIERR_NOINTERFACE
)
342 ret_value
= DIERR_NOINTERFACE
;
348 static HRESULT WINAPI
IDirectInputWImpl_CreateDevice(LPDIRECTINPUT7A iface
,
349 REFGUID rguid
, LPDIRECTINPUTDEVICEW
* pdev
, LPUNKNOWN punk
) {
350 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
351 HRESULT ret_value
= DIERR_DEVICENOTREG
;
354 TRACE("(this=%p,%s,%p,%p)\n",This
,debugstr_guid(rguid
),pdev
,punk
);
356 /* Loop on all the devices to see if anyone matches the given GUID */
357 for (i
= 0; i
< NB_DINPUT_DEVICES
; i
++) {
359 if (!dinput_devices
[i
]->create_deviceW
) continue;
360 if ((ret
= dinput_devices
[i
]->create_deviceW(This
, rguid
, NULL
, pdev
)) == DI_OK
)
363 if (ret
== DIERR_NOINTERFACE
)
364 ret_value
= DIERR_NOINTERFACE
;
370 static HRESULT WINAPI
IDirectInputAImpl_Initialize(LPDIRECTINPUT7A iface
, HINSTANCE hinst
, DWORD x
) {
371 return DIERR_ALREADYINITIALIZED
;
374 static HRESULT WINAPI
IDirectInputAImpl_GetDeviceStatus(LPDIRECTINPUT7A iface
,
376 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
378 FIXME("(%p)->(%s): stub\n",This
,debugstr_guid(rguid
));
383 static HRESULT WINAPI
IDirectInputAImpl_RunControlPanel(LPDIRECTINPUT7A iface
,
386 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
387 FIXME("(%p)->(%p,%08lx): stub\n",This
, hwndOwner
, dwFlags
);
392 static HRESULT WINAPI
IDirectInput2AImpl_FindDevice(LPDIRECTINPUT7A iface
, REFGUID rguid
,
393 LPCSTR pszName
, LPGUID pguidInstance
) {
394 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
395 FIXME("(%p)->(%s, %s, %p): stub\n", This
, debugstr_guid(rguid
), pszName
, pguidInstance
);
400 static HRESULT WINAPI
IDirectInput2WImpl_FindDevice(LPDIRECTINPUT7W iface
, REFGUID rguid
,
401 LPCWSTR pszName
, LPGUID pguidInstance
) {
402 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
403 FIXME("(%p)->(%s, %s, %p): stub\n", This
, debugstr_guid(rguid
), debugstr_w(pszName
), pguidInstance
);
408 static HRESULT WINAPI
IDirectInput7AImpl_CreateDeviceEx(LPDIRECTINPUT7A iface
, REFGUID rguid
,
409 REFIID riid
, LPVOID
* pvOut
, LPUNKNOWN lpUnknownOuter
)
411 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
412 HRESULT ret_value
= DIERR_DEVICENOTREG
;
415 TRACE("(%p)->(%s, %s, %p, %p)\n", This
, debugstr_guid(rguid
), debugstr_guid(riid
), pvOut
, lpUnknownOuter
);
417 /* Loop on all the devices to see if anyone matches the given GUID */
418 for (i
= 0; i
< NB_DINPUT_DEVICES
; i
++) {
420 if (!dinput_devices
[i
]->create_deviceA
) continue;
421 if ((ret
= dinput_devices
[i
]->create_deviceA(This
, rguid
, riid
, (LPDIRECTINPUTDEVICEA
*) pvOut
)) == DI_OK
)
424 if (ret
== DIERR_NOINTERFACE
)
425 ret_value
= DIERR_NOINTERFACE
;
431 static HRESULT WINAPI
IDirectInput7WImpl_CreateDeviceEx(LPDIRECTINPUT7W iface
, REFGUID rguid
,
432 REFIID riid
, LPVOID
* pvOut
, LPUNKNOWN lpUnknownOuter
)
434 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
435 HRESULT ret_value
= DIERR_DEVICENOTREG
;
438 TRACE("(%p)->(%s, %s, %p, %p)\n", This
, debugstr_guid(rguid
), debugstr_guid(riid
), pvOut
, lpUnknownOuter
);
440 /* Loop on all the devices to see if anyone matches the given GUID */
441 for (i
= 0; i
< NB_DINPUT_DEVICES
; i
++) {
443 if (!dinput_devices
[i
]->create_deviceW
) continue;
444 if ((ret
= dinput_devices
[i
]->create_deviceW(This
, rguid
, riid
, (LPDIRECTINPUTDEVICEW
*) pvOut
)) == DI_OK
)
447 if (ret
== DIERR_NOINTERFACE
)
448 ret_value
= DIERR_NOINTERFACE
;
454 static HRESULT WINAPI
IDirectInput8AImpl_QueryInterface(LPDIRECTINPUT8A iface
, REFIID riid
, LPVOID
*ppobj
) {
455 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
457 TRACE("(this=%p,%s,%p)\n",This
,debugstr_guid(riid
),ppobj
);
458 if (IsEqualGUID(&IID_IUnknown
,riid
) ||
459 IsEqualGUID(&IID_IDirectInput8A
,riid
)) {
460 IDirectInputAImpl_AddRef((LPDIRECTINPUT7A
) iface
);
464 TRACE("Unsupported interface !\n");
465 return E_NOINTERFACE
;
468 static HRESULT WINAPI
IDirectInput8WImpl_QueryInterface(LPDIRECTINPUT8W iface
, REFIID riid
, LPVOID
*ppobj
) {
469 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
471 TRACE("(this=%p,%s,%p)\n",This
,debugstr_guid(riid
),ppobj
);
472 if (IsEqualGUID(&IID_IUnknown
,riid
) ||
473 IsEqualGUID(&IID_IDirectInput8W
,riid
)) {
474 IDirectInputAImpl_AddRef((LPDIRECTINPUT7A
) iface
);
478 TRACE("Unsupported interface !\n");
479 return E_NOINTERFACE
;
482 static HRESULT WINAPI
IDirectInput8AImpl_EnumDevicesBySemantics(
483 LPDIRECTINPUT8A iface
, LPCSTR ptszUserName
, LPDIACTIONFORMATA lpdiActionFormat
,
484 LPDIENUMDEVICESBYSEMANTICSCBA lpCallback
,
485 LPVOID pvRef
, DWORD dwFlags
488 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
490 FIXME("(this=%p,%s,%p,%p,%p,%04lx): stub\n", This
, ptszUserName
, lpdiActionFormat
,
491 lpCallback
, pvRef
, dwFlags
);
495 static HRESULT WINAPI
IDirectInput8WImpl_EnumDevicesBySemantics(
496 LPDIRECTINPUT8W iface
, LPCWSTR ptszUserName
, LPDIACTIONFORMATW lpdiActionFormat
,
497 LPDIENUMDEVICESBYSEMANTICSCBW lpCallback
,
498 LPVOID pvRef
, DWORD dwFlags
501 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
503 FIXME("(this=%p,%s,%p,%p,%p,%04lx): stub\n", This
, debugstr_w(ptszUserName
), lpdiActionFormat
,
504 lpCallback
, pvRef
, dwFlags
);
508 static HRESULT WINAPI
IDirectInput8AImpl_ConfigureDevices(
509 LPDIRECTINPUT8A iface
, LPDICONFIGUREDEVICESCALLBACK lpdiCallback
,
510 LPDICONFIGUREDEVICESPARAMSA lpdiCDParams
, DWORD dwFlags
, LPVOID pvRefData
513 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
515 FIXME("(this=%p,%p,%p,%04lx,%p): stub\n", This
, lpdiCallback
, lpdiCDParams
,
520 static HRESULT WINAPI
IDirectInput8WImpl_ConfigureDevices(
521 LPDIRECTINPUT8W iface
, LPDICONFIGUREDEVICESCALLBACK lpdiCallback
,
522 LPDICONFIGUREDEVICESPARAMSW lpdiCDParams
, DWORD dwFlags
, LPVOID pvRefData
525 IDirectInputImpl
*This
= (IDirectInputImpl
*)iface
;
527 FIXME("(this=%p,%p,%p,%04lx,%p): stub\n", This
, lpdiCallback
, lpdiCDParams
,
532 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
533 # define XCAST(fun) (typeof(ddi7avt.fun))
535 # define XCAST(fun) (void*)
538 static const IDirectInput7AVtbl ddi7avt
= {
539 XCAST(QueryInterface
)IDirectInputAImpl_QueryInterface
,
540 XCAST(AddRef
)IDirectInputAImpl_AddRef
,
541 XCAST(Release
)IDirectInputAImpl_Release
,
542 XCAST(CreateDevice
)IDirectInputAImpl_CreateDevice
,
543 XCAST(EnumDevices
)IDirectInputAImpl_EnumDevices
,
544 XCAST(GetDeviceStatus
)IDirectInputAImpl_GetDeviceStatus
,
545 XCAST(RunControlPanel
)IDirectInputAImpl_RunControlPanel
,
546 XCAST(Initialize
)IDirectInputAImpl_Initialize
,
547 XCAST(FindDevice
)IDirectInput2AImpl_FindDevice
,
548 XCAST(CreateDeviceEx
)IDirectInput7AImpl_CreateDeviceEx
552 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
553 # define XCAST(fun) (typeof(ddi7wvt.fun))
555 # define XCAST(fun) (void*)
558 static const IDirectInput7WVtbl ddi7wvt
= {
559 XCAST(QueryInterface
)IDirectInputWImpl_QueryInterface
,
560 XCAST(AddRef
)IDirectInputAImpl_AddRef
,
561 XCAST(Release
)IDirectInputAImpl_Release
,
562 XCAST(CreateDevice
)IDirectInputWImpl_CreateDevice
,
563 XCAST(EnumDevices
)IDirectInputWImpl_EnumDevices
,
564 XCAST(GetDeviceStatus
)IDirectInputAImpl_GetDeviceStatus
,
565 XCAST(RunControlPanel
)IDirectInputAImpl_RunControlPanel
,
566 XCAST(Initialize
)IDirectInputAImpl_Initialize
,
567 XCAST(FindDevice
)IDirectInput2WImpl_FindDevice
,
568 XCAST(CreateDeviceEx
)IDirectInput7WImpl_CreateDeviceEx
572 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
573 # define XCAST(fun) (typeof(ddi8avt.fun))
575 # define XCAST(fun) (void*)
578 static const IDirectInput8AVtbl ddi8avt
= {
579 XCAST(QueryInterface
)IDirectInput8AImpl_QueryInterface
,
580 XCAST(AddRef
)IDirectInputAImpl_AddRef
,
581 XCAST(Release
)IDirectInputAImpl_Release
,
582 XCAST(CreateDevice
)IDirectInputAImpl_CreateDevice
,
583 XCAST(EnumDevices
)IDirectInputAImpl_EnumDevices
,
584 XCAST(GetDeviceStatus
)IDirectInputAImpl_GetDeviceStatus
,
585 XCAST(RunControlPanel
)IDirectInputAImpl_RunControlPanel
,
586 XCAST(Initialize
)IDirectInputAImpl_Initialize
,
587 XCAST(FindDevice
)IDirectInput2AImpl_FindDevice
,
588 XCAST(EnumDevicesBySemantics
)IDirectInput8AImpl_EnumDevicesBySemantics
,
589 XCAST(ConfigureDevices
)IDirectInput8AImpl_ConfigureDevices
593 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
594 # define XCAST(fun) (typeof(ddi8wvt.fun))
596 # define XCAST(fun) (void*)
598 static const IDirectInput8WVtbl ddi8wvt
= {
599 XCAST(QueryInterface
)IDirectInput8WImpl_QueryInterface
,
600 XCAST(AddRef
)IDirectInputAImpl_AddRef
,
601 XCAST(Release
)IDirectInputAImpl_Release
,
602 XCAST(CreateDevice
)IDirectInputWImpl_CreateDevice
,
603 XCAST(EnumDevices
)IDirectInputWImpl_EnumDevices
,
604 XCAST(GetDeviceStatus
)IDirectInputAImpl_GetDeviceStatus
,
605 XCAST(RunControlPanel
)IDirectInputAImpl_RunControlPanel
,
606 XCAST(Initialize
)IDirectInputAImpl_Initialize
,
607 XCAST(FindDevice
)IDirectInput2WImpl_FindDevice
,
608 XCAST(EnumDevicesBySemantics
)IDirectInput8WImpl_EnumDevicesBySemantics
,
609 XCAST(ConfigureDevices
)IDirectInput8WImpl_ConfigureDevices
613 /*******************************************************************************
614 * DirectInput ClassFactory
618 /* IUnknown fields */
619 const IClassFactoryVtbl
*lpVtbl
;
623 static HRESULT WINAPI
DICF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
) {
624 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
626 FIXME("(%p)->(%s,%p),stub!\n",This
,debugstr_guid(riid
),ppobj
);
627 return E_NOINTERFACE
;
630 static ULONG WINAPI
DICF_AddRef(LPCLASSFACTORY iface
) {
631 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
632 return InterlockedIncrement(&(This
->ref
));
635 static ULONG WINAPI
DICF_Release(LPCLASSFACTORY iface
) {
636 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
637 /* static class, won't be freed */
638 return InterlockedDecrement(&(This
->ref
));
641 static HRESULT WINAPI
DICF_CreateInstance(
642 LPCLASSFACTORY iface
,LPUNKNOWN pOuter
,REFIID riid
,LPVOID
*ppobj
644 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
646 TRACE("(%p)->(%p,%s,%p)\n",This
,pOuter
,debugstr_guid(riid
),ppobj
);
647 if ( IsEqualGUID( &IID_IDirectInputA
, riid
) ||
648 IsEqualGUID( &IID_IDirectInputW
, riid
) ||
649 IsEqualGUID( &IID_IDirectInput2A
, riid
) ||
650 IsEqualGUID( &IID_IDirectInput2W
, riid
) ||
651 IsEqualGUID( &IID_IDirectInput7A
, riid
) ||
652 IsEqualGUID( &IID_IDirectInput7W
, riid
) ||
653 IsEqualGUID( &IID_IDirectInput8A
, riid
) ||
654 IsEqualGUID( &IID_IDirectInput8W
, riid
) ) {
655 /* FIXME: reuse already created dinput if present? */
656 return DirectInputCreateEx(0,0,riid
,ppobj
,pOuter
);
659 FIXME("(%p,%p,%s,%p) Interface not found!\n",This
,pOuter
,debugstr_guid(riid
),ppobj
);
660 return E_NOINTERFACE
;
663 static HRESULT WINAPI
DICF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
) {
664 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
665 FIXME("(%p)->(%d),stub!\n",This
,dolock
);
669 static const IClassFactoryVtbl DICF_Vtbl
= {
676 static IClassFactoryImpl DINPUT_CF
= {&DICF_Vtbl
, 1 };
678 /***********************************************************************
679 * DllCanUnloadNow (DINPUT.@)
681 HRESULT WINAPI
DllCanUnloadNow(void)
683 FIXME("(void): stub\n");
688 /***********************************************************************
689 * DllGetClassObject (DINPUT.@)
691 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
693 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
694 if ( IsEqualCLSID( &IID_IClassFactory
, riid
) ) {
695 *ppv
= (LPVOID
)&DINPUT_CF
;
696 IClassFactory_AddRef((IClassFactory
*)*ppv
);
700 FIXME("(%s,%s,%p): no interface found.\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
701 return CLASS_E_CLASSNOTAVAILABLE
;