Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/***************************************************************************\
* * ******************* * * GDI SAMPLE CODE * * ******************* * * Module Name: debug.h * * Commonly used debugging macros. * * Copyright (c) 1992-1998 Microsoft Corporation \***************************************************************************/
#if DBG
VOID DebugPrint( ULONG DebugPrintLevel, PCHAR DebugMessage, ... );
#define DISPDBG(arg) DebugPrint arg
#define RIP(x) { DebugPrint(0, x); EngDebugBreak();}
#else
#define DISPDBG(arg)
#define RIP(x)
#endif
|