mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
6c0c23cb53
- Sync with trunk head (r50270) - This also reverts r49298. svn path=/branches/cmake-bringup/; revision=50271
26 lines
514 B
C
Executable file
26 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
|