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

dinput: Add debug output for IDirectInput8A::EnumDevicesBySemantics.

parent 9ce27fc7
......@@ -670,7 +670,18 @@ static HRESULT WINAPI IDirectInput8AImpl_EnumDevicesBySemantics(
FIXME("(this=%p,%s,%p,%p,%p,%04x): stub\n", This, ptszUserName, lpdiActionFormat,
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(
......
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