mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
- Fix wdmaud / sysaudio service installation when a driver is installed
svn path=/trunk/; revision=39758
This commit is contained in:
parent
5f60162daa
commit
be3c2ddc31
1 changed files with 2 additions and 1 deletions
|
@ -166,7 +166,8 @@ MMSYS_InstallDevice(HDEVINFO hDevInfo, PSP_DEVINFO_DATA pspDevInfoData)
|
|||
PVOID Context;
|
||||
BOOL Result;
|
||||
|
||||
if (!IsEqualIID(&pspDevInfoData->ClassGuid, &GUID_DEVCLASS_SOUND))
|
||||
if (!IsEqualIID(&pspDevInfoData->ClassGuid, &GUID_DEVCLASS_SOUND) &&
|
||||
!IsEqualIID(&pspDevInfoData->ClassGuid, &GUID_DEVCLASS_MEDIA))
|
||||
return ERROR_DI_DO_DEFAULT;
|
||||
|
||||
Length = GetWindowsDirectoryW(szBuffer, MAX_PATH);
|
||||
|
|
Loading…
Reference in a new issue