Don't link with DirectSoundCreate8 as this prevents running with older
versions of DirectX.
diff --git a/dlls/dsound/tests/ds3d8.c b/dlls/dsound/tests/ds3d8.c
index b1df270..88eb792 100644
--- a/dlls/dsound/tests/ds3d8.c
+++ b/dlls/dsound/tests/ds3d8.c
@@ -794,7 +794,7 @@
int ref;
/* Create the DirectSound object */
- rc=DirectSoundCreate8(lpGuid,&dso,NULL);
+ rc=pDirectSoundCreate8(lpGuid,&dso,NULL);
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED,
"DirectSoundCreate8() failed: %s\n",DXGetErrorString8(rc));
if (rc!=DS_OK)