Commit da77b8a0 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

dinput: Add debug output for IDirectInput8A::EnumDevicesBySemantics.

parent 9ce27fc7
...@@ -666,11 +666,22 @@ static HRESULT WINAPI IDirectInput8AImpl_EnumDevicesBySemantics( ...@@ -666,11 +666,22 @@ static HRESULT WINAPI IDirectInput8AImpl_EnumDevicesBySemantics(
LPVOID pvRef, DWORD dwFlags LPVOID pvRef, DWORD dwFlags
) )
{ {
IDirectInputImpl *This = impl_from_IDirectInput8A( iface ); IDirectInputImpl *This = impl_from_IDirectInput8A( iface );
FIXME("(this=%p,%s,%p,%p,%p,%04x): stub\n", This, ptszUserName, lpdiActionFormat, FIXME("(this=%p,%s,%p,%p,%p,%04x): stub\n", This, ptszUserName, lpdiActionFormat,
lpCallback, pvRef, dwFlags); lpCallback, pvRef, dwFlags);
return 0; #define X(x) if (dwFlags & x) FIXME("\tdwFlags |= "#x"\n");
X(DIEDBSFL_ATTACHEDONLY)
X(DIEDBSFL_THISUSER)
X(DIEDBSFL_FORCEFEEDBACK)
X(DIEDBSFL_AVAILABLEDEVICES)
X(DIEDBSFL_MULTIMICEKEYBOARDS)
X(DIEDBSFL_NONGAMINGDEVICES)
#undef X
_dump_diactionformatA(lpdiActionFormat);
return DI_OK;
} }
static HRESULT WINAPI IDirectInput8WImpl_EnumDevicesBySemantics( static HRESULT WINAPI IDirectInput8WImpl_EnumDevicesBySemantics(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment