mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
39 lines
490 B
C
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
|