Commit 6936db11 authored by Paul Bain's avatar Paul Bain Committed by Alexandre Julliard

Put IID_IDirectInputDevice2A back in

IDirectInputDevice2AImpl_QueryInterface.
parent 8944b25e
......@@ -341,6 +341,11 @@ HRESULT WINAPI IDirectInputDevice2AImpl_QueryInterface(
*ppobj = This;
return 0;
}
if (IsEqualGUID(&IID_IDirectInputDevice2A,riid)) {
IDirectInputDevice2_AddRef(iface);
*ppobj = This;
return 0;
}
if (IsEqualGUID(&IID_IDirectInputDevice7A,riid)) {
IDirectInputDevice7_AddRef(iface);
*ppobj = This;
......
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