reactos/drivers/video/displays/vga_new/debug.h
Amine Khaldi 6c0c23cb53 [CMAKE]
- Sync with trunk head (r50270)
- This also reverts r49298.

svn path=/branches/cmake-bringup/; revision=50271
2011-01-03 00:33:31 +00:00

27 lines
514 B
C
Executable file

/*
* PROJECT: ReactOS VGA Display Driver
* LICENSE: Microsoft NT4 DDK Sample Code License
* FILE: boot/drivers/video/displays/vga/debug.h
* PURPOSE: Debug Support Header
* PROGRAMMERS: Copyright (c) 1992-1995 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