reactos/win32ss/drivers/displays/framebuf_new/debug.h
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

27 lines
527 B
C

/*
* PROJECT: ReactOS Framebuffer Display Driver
* LICENSE: Microsoft NT4 DDK Sample Code License
* FILE: boot/drivers/video/displays/framebuf/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