* Do not include debug.h into the main header.

svn path=/trunk/; revision=61304
This commit is contained in:
Amine Khaldi 2013-12-19 22:39:27 +00:00
parent b6ffc426d7
commit fb5615d608
6 changed files with 18 additions and 2 deletions

View file

@ -6,8 +6,12 @@
* PROGRAMMER: Andrew Greenwood
* Johannes Anderwald
*/
#include "wdmaud.h"
#define NDEBUG
#include <debug.h>
const GUID KSPROPSETID_Sysaudio = {0xCBE3FAA0L, 0xCC75, 0x11D0, {0xB4, 0x65, 0x00, 0x00, 0x1A, 0x18, 0x18, 0xE6}};
NTSTATUS

View file

@ -6,8 +6,12 @@
* PROGRAMMER: Andrew Greenwood
* Johannes Anderwald
*/
#include "wdmaud.h"
#define NDEBUG
#include <debug.h>
NTSTATUS
WdmAudOpenSysAudioDevice(
IN LPWSTR DeviceName,

View file

@ -6,8 +6,12 @@
* PROGRAMMER: Andrew Greenwood
* Johannes Anderwald
*/
#include "wdmaud.h"
#define NDEBUG
#include <debug.h>
const GUID KSCATEGORY_SYSAUDIO = {0xA7C7A5B1L, 0x5AF3, 0x11D1, {0x9C, 0xED, 0x00, 0xA0, 0x24, 0xBF, 0x04, 0x07}};
const GUID KSCATEGORY_WDMAUD = {0x3E227E76L, 0x690D, 0x11D2, {0x81, 0x61, 0x00, 0x00, 0xF8, 0x77, 0x5B, 0xF1}};

View file

@ -8,6 +8,8 @@
#include "wdmaud.h"
#define NDEBUG
#include <debug.h>
PVOID Alloc(ULONG NumBytes);
MIXER_STATUS Close(HANDLE hDevice);

View file

@ -6,8 +6,12 @@
* PROGRAMMER: Andrew Greenwood
* Johannes Anderwald
*/
#include "wdmaud.h"
#define NDEBUG
#include <debug.h>
PVOID
AllocateItem(
IN POOL_TYPE PoolType,

View file

@ -2,8 +2,6 @@
#include <ntddk.h>
#include <portcls.h>
#include <ks.h>
#define NDEBUG
#include <debug.h>
#include <ksmedia.h>
#include <mmreg.h>
#include <mmsystem.h>