[KERNEL32]

- Fix release build, part 2. Further improvement to gDebugChannels would be to convert them to a DECLARE_DEBUG_CHANNEL-alike macro.

svn path=/trunk/; revision=48729
This commit is contained in:
Aleksey Bragin 2010-09-10 09:04:25 +00:00
parent 60bb233f46
commit 7a9bd9ccea
4 changed files with 11 additions and 0 deletions

View file

@ -16,7 +16,9 @@
#define NDEBUG
#include <debug.h>
#if DBG
static ULONG gDebugChannel = kernel32file;
#endif
/* FUNCTIONS ****************************************************************/

View file

@ -15,7 +15,10 @@
#include <k32.h>
#define NDEBUG
#include <debug.h>
#if DBG
static ULONG gDebugChannel = kernel32file;
#endif
/* FUNCTIONS ****************************************************************/

View file

@ -17,7 +17,10 @@
#include <k32.h>
#define NDEBUG
#include <debug.h>
#if DBG
static ULONG gDebugChannel = kernel32file;
#endif
#define SYMLINK_FLAG_RELATIVE 1

View file

@ -19,7 +19,10 @@
#include <k32.h>
#define NDEBUG
#include <debug.h>
#if DBG
static ULONG gDebugChannel = kernel32file;
#endif
/* GLOBAL VARIABLES **********************************************************/