Commit beac9a27 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dsound/tests: IDirectSoundBuffer and IDirectSoundBuffer8 use the same implementation.

parent 4b54090a
...@@ -356,6 +356,8 @@ static HRESULT test_dsound8(LPGUID lpGuid) ...@@ -356,6 +356,8 @@ static HRESULT test_dsound8(LPGUID lpGuid)
&IID_IDirectSoundBuffer8, &IID_IDirectSoundBuffer8,
(void **)&buffer8); (void **)&buffer8);
if (rc==DS_OK && buffer8!=NULL) { if (rc==DS_OK && buffer8!=NULL) {
ok(buffer8==(IDirectSoundBuffer8*)secondary,
"IDirectSoundBuffer8 iface different from IDirectSoundBuffer.\n");
ref=IDirectSoundBuffer8_AddRef(buffer8); ref=IDirectSoundBuffer8_AddRef(buffer8);
ok(ref==3,"IDirectSoundBuffer8_AddRef() has %d references, " ok(ref==3,"IDirectSoundBuffer8_AddRef() has %d references, "
"should have 3\n",ref); "should have 3\n",ref);
......
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