mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +00:00
Also define the DPRINT_ constants in release mode
svn path=/trunk/; revision=26783
This commit is contained in:
parent
368e2849a5
commit
5f71c28029
1 changed files with 14 additions and 14 deletions
|
@ -21,8 +21,6 @@
|
|||
#ifndef __DEBUG_H
|
||||
#define __DEBUG_H
|
||||
|
||||
#ifdef DBG
|
||||
|
||||
#define DPRINT_NONE 0x00000000 // No debug print
|
||||
#define DPRINT_WARNING 0x00000001 // OR this with DebugPrintMask to enable debugger messages and other misc stuff
|
||||
#define DPRINT_MEMORY 0x00000002 // OR this with DebugPrintMask to enable memory management messages
|
||||
|
@ -37,6 +35,8 @@
|
|||
#define DPRINT_HWDETECT 0x00000400 // OR this with DebugPrintMask to enable hardware detection messages
|
||||
#define DPRINT_WINDOWS 0x00000800 // OR this with DebugPrintMask to enable messages from Windows loader
|
||||
|
||||
#ifdef DBG
|
||||
|
||||
VOID DebugInit(VOID);
|
||||
VOID DebugPrint(ULONG Mask, char *format, ...);
|
||||
VOID DebugPrint1(char *format, ...);
|
||||
|
|
Loading…
Reference in a new issue