ReactOS 0.4.15-dev-7924-g5949c20
debug.h
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS VGA Display Driver
3 * LICENSE: Microsoft NT4 DDK Sample Code License
4 * FILE: win32ss/drivers/displays/vga_new/debug.h
5 * PURPOSE: Debug Support Header
6 * PROGRAMMERS: Copyright (c) 1992-1995 Microsoft Corporation
7 */
8
9#if DBG
10
11VOID
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
#define DebugPrint(x)
Definition: classpnp.h:125
uint32_t ULONG
Definition: typedefs.h:59
char * PCHAR
Definition: typedefs.h:51