reactos/reactos/drivers/wdm/audio/legacy/wdmaud/wdmaud.h
Johannes Anderwald 3f066801c8 - Implement enumerating available virtual audio devices and opening them
svn path=/trunk/; revision=39178
2009-01-28 15:24:57 +00:00

39 lines
490 B
C

#ifndef WDMAUD_H__
#define WDMAUD_H__
#define _NTDDK_
#include <ntddk.h>
#include <portcls.h>
#define YDEBUG
#include <debug.h>
typedef struct
{
LIST_ENTRY Entry;
HANDLE Handle;
UNICODE_STRING SymbolicLink;
PFILE_OBJECT FileObject;
}SYSAUDIO_ENTRY;
typedef struct
{
KSDEVICE_HEADER DeviceHeader;
PVOID SysAudioNotification;
ULONG NumSysAudioDevices;
LIST_ENTRY SysAudioDeviceList;
}WDMAUD_DEVICE_EXTENSION, *PWDMAUD_DEVICE_EXTENSION;
#endif