mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
26 lines
527 B
C
Executable file
26 lines
527 B
C
Executable file
/*
|
|
* 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
|