mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
Fix warning: implicit declaration of function 'VALID_SOUND_DEVICE_TYPE'
svn path=/trunk/; revision=39796
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
#include <ntddk.h>
|
||||
#include <ntddsnd.h>
|
||||
#include <sndnames.h>
|
||||
#include <sndtypes.h>
|
||||
#include <debug.h>
|
||||
|
||||
|
||||
@@ -168,7 +169,7 @@ GetDefaultSoundDeviceNameBodies(
|
||||
OUT PCWSTR* DeviceNameBody,
|
||||
OUT PCWSTR* DosDeviceNameBody)
|
||||
{
|
||||
if ( ! VALID_SOUND_DEVICE_TYPE(DeviceType) )
|
||||
if ( ! IS_VALID_SOUND_DEVICE_TYPE(DeviceType) )
|
||||
{
|
||||
DPRINT("Invalid device type");
|
||||
return STATUS_INVALID_PARAMETER;
|
||||
|
||||
Reference in New Issue
Block a user