📄 propset.c
字号:
/* * Unit tests for CLSID_DirectSoundPrivate property set functions * (used by dxdiag) * * Copyright (c) 2003 Robert Reif * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#define NONAMELESSSTRUCT#define NONAMELESSUNION#define COBJMACROS#include <windows.h>#include "wine/test.h"#include "dsound.h"#include "initguid.h"#include "dsconf.h"#include "dxerr8.h"#include "dsound_test.h"#ifndef DSBCAPS_CTRLDEFAULT#define DSBCAPS_CTRLDEFAULT \ DSBCAPS_CTRLFREQUENCY|DSBCAPS_CTRLPAN|DSBCAPS_CTRLVOLUME#endifDEFINE_GUID(DSPROPSETID_VoiceManager, \ 0x62A69BAE,0xDF9D,0x11D1,0x99,0xA6,0x00,0xC0,0x4F,0xC9,0x9D,0x46);DEFINE_GUID(DSPROPSETID_EAX20_ListenerProperties, \ 0x306a6a8,0xb224,0x11d2,0x99,0xe5,0x0,0x0,0xe8,0xd8,0xc7,0x22);DEFINE_GUID(DSPROPSETID_EAX20_BufferProperties, \ 0x306a6a7,0xb224,0x11d2,0x99,0xe5,0x0,0x0,0xe8,0xd8,0xc7,0x22);DEFINE_GUID(DSPROPSETID_I3DL2_ListenerProperties, \ 0xDA0F0520,0x300A,0x11D3,0x8A,0x2B,0x00,0x60,0x97,0x0D,0xB0,0x11);DEFINE_GUID(DSPROPSETID_I3DL2_BufferProperties, \ 0xDA0F0521,0x300A,0x11D3,0x8A,0x2B,0x00,0x60,0x97,0x0D,0xB0,0x11);DEFINE_GUID(DSPROPSETID_ZOOMFX_BufferProperties, \ 0xCD5368E0,0x3450,0x11D3,0x8B,0x6E,0x00,0x10,0x5A,0x9B,0x7B,0xBC);typedef HRESULT (CALLBACK * MYPROC)(REFCLSID, REFIID, LPVOID *);static HRESULT (WINAPI *pDirectSoundCreate8)(LPCGUID,LPDIRECTSOUND8*, LPUNKNOWN)=NULL;static HRESULT (WINAPI *pDirectSoundCaptureCreate)(LPCGUID, LPDIRECTSOUNDCAPTURE*,LPUNKNOWN)=NULL;static HRESULT (WINAPI *pDirectSoundCaptureCreate8)(LPCGUID, LPDIRECTSOUNDCAPTURE8*,LPUNKNOWN)=NULL;static HRESULT (WINAPI *pDirectSoundFullDuplexCreate)(LPCGUID,LPCGUID, LPCDSCBUFFERDESC,LPCDSBUFFERDESC,HWND,DWORD,LPDIRECTSOUNDFULLDUPLEX*, LPDIRECTSOUNDCAPTUREBUFFER8*,LPDIRECTSOUNDBUFFER8*,LPUNKNOWN)=NULL;BOOL CALLBACK callback(PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_DATA data, LPVOID context){ trace(" found device:\n"); trace(" Type: %s\n", data->Type == DIRECTSOUNDDEVICE_TYPE_EMULATED ? "Emulated" : data->Type == DIRECTSOUNDDEVICE_TYPE_VXD ? "VxD" : data->Type == DIRECTSOUNDDEVICE_TYPE_WDM ? "WDM" : "Unknown"); trace(" DataFlow: %s\n", data->DataFlow == DIRECTSOUNDDEVICE_DATAFLOW_RENDER ? "Render" : data->DataFlow == DIRECTSOUNDDEVICE_DATAFLOW_CAPTURE ? "Capture" : "Unknown"); trace(" DeviceId: {%08lx-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\n", data->DeviceId.Data1,data->DeviceId.Data2,data->DeviceId.Data3, data->DeviceId.Data4[0],data->DeviceId.Data4[1], data->DeviceId.Data4[2],data->DeviceId.Data4[3], data->DeviceId.Data4[4],data->DeviceId.Data4[5], data->DeviceId.Data4[6],data->DeviceId.Data4[7]); trace(" Description: %s\n", data->Description); trace(" Module: %s\n", data->Module); trace(" Interface: %s\n", data->Interface); trace(" WaveDeviceId: %ld\n", data->WaveDeviceId); return TRUE;}BOOL CALLBACK callback1(PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1_DATA data, LPVOID context){ char descriptionA[0x100]; char moduleA[MAX_PATH]; trace(" found device:\n"); trace(" Type: %s\n", data->Type == DIRECTSOUNDDEVICE_TYPE_EMULATED ? "Emulated" : data->Type == DIRECTSOUNDDEVICE_TYPE_VXD ? "VxD" : data->Type == DIRECTSOUNDDEVICE_TYPE_WDM ? "WDM" : "Unknown"); trace(" DataFlow: %s\n", data->DataFlow == DIRECTSOUNDDEVICE_DATAFLOW_RENDER ? "Render" : data->DataFlow == DIRECTSOUNDDEVICE_DATAFLOW_CAPTURE ? "Capture" : "Unknown"); trace(" DeviceId: {%08lx-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\n", data->DeviceId.Data1,data->DeviceId.Data2,data->DeviceId.Data3, data->DeviceId.Data4[0],data->DeviceId.Data4[1], data->DeviceId.Data4[2],data->DeviceId.Data4[3], data->DeviceId.Data4[4],data->DeviceId.Data4[5], data->DeviceId.Data4[6],data->DeviceId.Data4[7]); trace(" DescriptionA: %s\n", data->DescriptionA); WideCharToMultiByte(CP_ACP, 0, data->DescriptionW, -1, descriptionA, sizeof(descriptionA), NULL, NULL); trace(" DescriptionW: %s\n", descriptionA); trace(" ModuleA: %s\n", data->ModuleA); WideCharToMultiByte(CP_ACP, 0, data->ModuleW, -1, moduleA, sizeof(moduleA), NULL, NULL); trace(" ModuleW: %s\n", moduleA); trace(" WaveDeviceId: %ld\n", data->WaveDeviceId); return TRUE;}BOOL CALLBACK callbackA(PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A_DATA data, LPVOID context){ trace(" found device:\n"); trace(" Type: %s\n", data->Type == DIRECTSOUNDDEVICE_TYPE_EMULATED ? "Emulated" : data->Type == DIRECTSOUNDDEVICE_TYPE_VXD ? "VxD" : data->Type == DIRECTSOUNDDEVICE_TYPE_WDM ? "WDM" : "Unknown"); trace(" DataFlow: %s\n", data->DataFlow == DIRECTSOUNDDEVICE_DATAFLOW_RENDER ? "Render" : data->DataFlow == DIRECTSOUNDDEVICE_DATAFLOW_CAPTURE ? "Capture" : "Unknown"); trace(" DeviceId: {%08lx-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\n", data->DeviceId.Data1,data->DeviceId.Data2,data->DeviceId.Data3, data->DeviceId.Data4[0],data->DeviceId.Data4[1], data->DeviceId.Data4[2],data->DeviceId.Data4[3], data->DeviceId.Data4[4],data->DeviceId.Data4[5], data->DeviceId.Data4[6],data->DeviceId.Data4[7]); trace(" Description: %s\n", data->Description); trace(" Module: %s\n", data->Module); trace(" Interface: %s\n", data->Interface); trace(" WaveDeviceId: %ld\n", data->WaveDeviceId); return TRUE;}BOOL CALLBACK callbackW(PDSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W_DATA data, LPVOID context){ char descriptionA[0x100]; char moduleA[MAX_PATH]; char interfaceA[MAX_PATH]; trace("found device:\n"); trace("\tType: %s\n", data->Type == DIRECTSOUNDDEVICE_TYPE_EMULATED ? "Emulated" : data->Type == DIRECTSOUNDDEVICE_TYPE_VXD ? "VxD" : data->Type == DIRECTSOUNDDEVICE_TYPE_WDM ? "WDM" : "Unknown"); trace("\tDataFlow: %s\n", data->DataFlow == DIRECTSOUNDDEVICE_DATAFLOW_RENDER ? "Render" : data->DataFlow == DIRECTSOUNDDEVICE_DATAFLOW_CAPTURE ? "Capture" : "Unknown"); trace("\tDeviceId: {%08lx-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\n", data->DeviceId.Data1,data->DeviceId.Data2,data->DeviceId.Data3, data->DeviceId.Data4[0],data->DeviceId.Data4[1], data->DeviceId.Data4[2],data->DeviceId.Data4[3], data->DeviceId.Data4[4],data->DeviceId.Data4[5], data->DeviceId.Data4[6],data->DeviceId.Data4[7]); WideCharToMultiByte(CP_ACP, 0, data->Description, -1, descriptionA, sizeof(descriptionA), NULL, NULL); WideCharToMultiByte(CP_ACP, 0, data->Module, -1, moduleA, sizeof(moduleA), NULL, NULL); WideCharToMultiByte(CP_ACP, 0, data->Interface, -1, interfaceA, sizeof(interfaceA), NULL, NULL); trace("\tDescription: %s\n", descriptionA); trace("\tModule: %s\n", moduleA); trace("\tInterface: %s\n", interfaceA); trace("\tWaveDeviceId: %ld\n", data->WaveDeviceId); return TRUE;}static void propset_private_tests(void){ HMODULE hDsound; HRESULT rc; IClassFactory * pcf; IKsPropertySet * pps; MYPROC fProc; ULONG support; hDsound = LoadLibrary("dsound.dll"); ok(hDsound!=0,"LoadLibrary(dsound.dll) failed\n"); if (hDsound==0) return; fProc = (MYPROC)GetProcAddress(hDsound, "DllGetClassObject"); /* try direct sound first */ /* DSOUND: Error: Invalid interface buffer */ rc = (fProc)(&CLSID_DirectSound, &IID_IClassFactory, (void **)0); ok(rc==DSERR_INVALIDPARAM,"DllGetClassObject(CLSID_DirectSound, " "IID_IClassFactory) should have returned DSERR_INVALIDPARAM, " "returned: %s\n",DXGetErrorString8(rc)); rc = (fProc)(&CLSID_DirectSound, &IID_IClassFactory, (void **)(&pcf)); ok(pcf!=0, "DllGetClassObject(CLSID_DirectSound, IID_IClassFactory) " "failed: %s\n",DXGetErrorString8(rc)); if (pcf==0) goto error; /* direct sound doesn't have an IKsPropertySet */ /* DSOUND: Error: Invalid interface buffer */ rc = IClassFactory_CreateInstance(pcf, NULL, &IID_IKsPropertySet, (void **)0); ok(rc==DSERR_INVALIDPARAM, "CreateInstance(IID_IKsPropertySet) should have " "returned DSERR_INVALIDPARAM, returned: %s\n",DXGetErrorString8(rc)); rc = IClassFactory_CreateInstance(pcf, NULL, &IID_IKsPropertySet, (void **)(&pps)); ok(rc==E_NOINTERFACE, "CreateInstance(IID_IKsPropertySet) should have " "returned E_NOINTERFACE, returned: %s\n",DXGetErrorString8(rc)); /* and the direct sound 8 version */ if (pDirectSoundCreate8) { rc = (fProc)(&CLSID_DirectSound8, &IID_IClassFactory, (void **)(&pcf)); ok(pcf!=0, "DllGetClassObject(CLSID_DirectSound8, IID_IClassFactory) " "failed: %s\n",DXGetErrorString8(rc)); if (pcf==0) goto error; /* direct sound 8 doesn't have an IKsPropertySet */ rc = IClassFactory_CreateInstance(pcf, NULL, &IID_IKsPropertySet, (void **)(&pps)); ok(rc==E_NOINTERFACE, "CreateInstance(IID_IKsPropertySet) should have " "returned E_NOINTERFACE, returned: %s\n",DXGetErrorString8(rc)); } /* try direct sound capture next */ if (pDirectSoundCaptureCreate) { rc = (fProc)(&CLSID_DirectSoundCapture, &IID_IClassFactory, (void **)(&pcf)); ok(pcf!=0, "DllGetClassObject(CLSID_DirectSoundCapture, IID_IClassFactory) " "failed: %s\n",DXGetErrorString8(rc)); if (pcf==0) goto error;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -