d73a223baaf57e6807b9413299e6fcfaf00a81a8
[reactos.git] / reactos / win32ss / drivers / displays / framebuf_new / debug.h
1 /*
2 * PROJECT: ReactOS Framebuffer Display Driver
3 * LICENSE: Microsoft NT4 DDK Sample Code License
4 * FILE: boot/drivers/video/displays/framebuf/debug.h
5 * PURPOSE: Debug Support Header
6 * PROGRAMMERS: Copyright (c) 1992-1995 Microsoft Corporation
7 */
8
9 #if DBG
10
11 VOID
12 DebugPrint(
13 ULONG DebugPrintLevel,
14 PCHAR DebugMessage,
15 ...
16 );
17
18 #define DISPDBG(arg) DebugPrint arg
19 #define RIP(x) { DebugPrint(0, x); EngDebugBreak();}
20
21 #else
22
23 #define DISPDBG(arg)
24 #define RIP(x)
25
26 #endif