Last change
on this file since 1207 was 1207, checked in by vboxsync, 18 years ago |
Cleaned up EOL style and uppercase names
|
-
Property svn:eol-style
set to
native
|
File size:
661 bytes
|
Line | |
---|
1 | /***************************************************************************\
|
---|
2 | *
|
---|
3 | * *******************
|
---|
4 | * * GDI SAMPLE CODE *
|
---|
5 | * *******************
|
---|
6 | *
|
---|
7 | * Module Name: debug.h
|
---|
8 | *
|
---|
9 | * Commonly used debugging macros.
|
---|
10 | *
|
---|
11 | * Copyright (c) 1992-1998 Microsoft Corporation
|
---|
12 | \***************************************************************************/
|
---|
13 |
|
---|
14 |
|
---|
15 | #ifdef LOG_ENABLED
|
---|
16 |
|
---|
17 | VOID
|
---|
18 | DebugPrint(
|
---|
19 | ULONG DebugPrintLevel,
|
---|
20 | PCHAR DebugMessage,
|
---|
21 | ...
|
---|
22 | );
|
---|
23 |
|
---|
24 | #define DISPDBG(arg) DebugPrint arg
|
---|
25 | #define RIP(x) { DebugPrint(0, x); EngDebugBreak();}
|
---|
26 |
|
---|
27 | #else
|
---|
28 |
|
---|
29 | #define DISPDBG(arg)
|
---|
30 | #define RIP(x)
|
---|
31 |
|
---|
32 | #endif
|
---|
33 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.