[WIN32SS::DRIVERS] Improve the FILE header section. Brought to you by Adam Stachowicz...
[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: win32ss/drivers/displays/framebuf_new/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