2010-12-14 03:03:30 +00:00
|
|
|
/*
|
2010-12-14 03:17:29 +00:00
|
|
|
* PROJECT: ReactOS VGA Display Driver
|
2010-12-14 03:03:30 +00:00
|
|
|
* LICENSE: Microsoft NT4 DDK Sample Code License
|
2010-12-14 03:17:29 +00:00
|
|
|
* FILE: boot/drivers/video/displays/vga/debug.h
|
2010-12-14 03:03:30 +00:00
|
|
|
* 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
|