Commit d8dea427 authored by Johan Gill's avatar Johan Gill Committed by Alexandre Julliard

Added a more truthful message about what really is wrong.

parent 268b5555
......@@ -1769,6 +1769,13 @@ static HRESULT WINAPI IDirectSoundBufferImpl_QueryInterface(
return S_OK;
}
#else
if ( IsEqualGUID( &IID_IDirectSound3DBuffer, riid ) ) {
FIXME("%s: I know about this GUID, but don't support it yet\n",
debugstr_guid( riid ));
*ppobj = NULL;
return E_FAIL;
}
#endif
if ( IsEqualGUID( &IID_IDirectSound3DListener, riid ) ) {
......
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