Commit e4ff8a0c authored by Zac Brown's avatar Zac Brown Committed by Alexandre Julliard

dsound/tests: Improve test for IDirectSound8_CreateSoundBuffer.

parent 85605ab5
...@@ -432,7 +432,10 @@ static HRESULT test_primary8(LPGUID lpGuid) ...@@ -432,7 +432,10 @@ static HRESULT test_primary8(LPGUID lpGuid)
"DSERR_INVALIDPARAM, returned: rc=%s,dsbo=%p\n", "DSERR_INVALIDPARAM, returned: rc=%s,dsbo=%p\n",
DXGetErrorString8(rc),primary); DXGetErrorString8(rc),primary);
/* DSOUND: Error: Invalid buffer description pointer */ ZeroMemory(&bufdesc, sizeof(bufdesc));
bufdesc.dwSize = sizeof(DSBUFFERDESC);
/* DSOUND: Error: Invalid dsound buffer interface pointer */
rc=IDirectSound8_CreateSoundBuffer(dso,&bufdesc,0,NULL); rc=IDirectSound8_CreateSoundBuffer(dso,&bufdesc,0,NULL);
ok(rc==DSERR_INVALIDPARAM && primary==0, ok(rc==DSERR_INVALIDPARAM && primary==0,
"IDirectSound8_CreateSoundBuffer() should have failed: rc=%s," "IDirectSound8_CreateSoundBuffer() should have failed: rc=%s,"
......
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