Module: wine Branch: master Commit: 91d580433c3410a22fc347f031382117edb2f5c2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=91d580433c3410a22fc347f031...
Author: Robert Reif reif@earthlink.net Date: Wed May 23 07:38:30 2007 -0400
dsound: Add missing interface ID.
---
dlls/dsound/dsound.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/dsound/dsound.c b/dlls/dsound/dsound.c index a9c0230..2a72027 100644 --- a/dlls/dsound/dsound.c +++ b/dlls/dsound/dsound.c @@ -1071,6 +1071,7 @@ HRESULT DSOUND_Create8( TRACE("(%s, %p)\n", debugstr_guid(riid), ppDS);
if (!IsEqualIID(riid, &IID_IUnknown) && + !IsEqualIID(riid, &IID_IDirectSound) && !IsEqualIID(riid, &IID_IDirectSound8)) { *ppDS = 0; return E_NOINTERFACE;