From d8dea427c17ccc8f440c1584ac94503b07d71353 Mon Sep 17 00:00:00 2001 From: Johan Gill Date: Sat, 6 Jan 2001 00:36:14 +0000 Subject: [PATCH] Added a more truthful message about what really is wrong. --- dlls/dsound/dsound_main.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dlls/dsound/dsound_main.c b/dlls/dsound/dsound_main.c index 22291128a84..b4cd763785d 100644 --- a/dlls/dsound/dsound_main.c +++ b/dlls/dsound/dsound_main.c @@ -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 ) ) { -- 2.11.4.GIT