Author: spetreolle Date: Sat Nov 14 14:00:29 2015 New Revision: 69885
URL: http://svn.reactos.org/svn/reactos?rev=69885&view=rev Log: [WDMAUD] Define NDEBUG before the includes, otherwise its a no-op. CORE-7716
Modified: trunk/reactos/dll/win32/wdmaud.drv/legacy.c trunk/reactos/dll/win32/wdmaud.drv/mixer.c trunk/reactos/dll/win32/wdmaud.drv/mmixer.c trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c
Modified: trunk/reactos/dll/win32/wdmaud.drv/legacy.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wdmaud.drv/legacy... ============================================================================== --- trunk/reactos/dll/win32/wdmaud.drv/legacy.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/wdmaud.drv/legacy.c [iso-8859-1] Sat Nov 14 14:00:29 2015 @@ -13,9 +13,8 @@ * */
+#define NDEBUG #include "wdmaud.h" - -#define NDEBUG #include <debug.h>
#define KERNEL_DEVICE_NAME L"\\.\wdmaud"
Modified: trunk/reactos/dll/win32/wdmaud.drv/mixer.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wdmaud.drv/mixer.... ============================================================================== --- trunk/reactos/dll/win32/wdmaud.drv/mixer.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/wdmaud.drv/mixer.c [iso-8859-1] Sat Nov 14 14:00:29 2015 @@ -7,12 +7,12 @@ * PROGRAMMERS: Johannes Anderwald */
+#define NDEBUG #include "wdmaud.h"
#include <samplerate.h> #include <float_cast.h>
-#define NDEBUG #include <debug.h>
extern HANDLE KernelHandle;
Modified: trunk/reactos/dll/win32/wdmaud.drv/mmixer.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wdmaud.drv/mmixer... ============================================================================== --- trunk/reactos/dll/win32/wdmaud.drv/mmixer.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/wdmaud.drv/mmixer.c [iso-8859-1] Sat Nov 14 14:00:29 2015 @@ -7,13 +7,13 @@ * PROGRAMMERS: Johannes Anderwald */
+#define NDEBUG #include "wdmaud.h"
#include <winreg.h> #include <setupapi.h> #include <mmixer.h>
-#define NDEBUG #include <debug.h>
typedef struct
Modified: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wdmaud.drv/wdmaud... ============================================================================== --- trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c [iso-8859-1] Sat Nov 14 14:00:29 2015 @@ -12,9 +12,9 @@ * */
+#define NDEBUG #include "wdmaud.h"
-#define NDEBUG #include <debug.h>
#ifndef USE_MMIXER_LIB