Last change
on this file since de91266 was f7428b1, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Started to rework include files.
|
-
Property mode
set to
100644
|
File size:
464 bytes
|
Rev | Line | |
---|
[f40a309] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | debug.h -- some simple debug trace macros
|
---|
| 4 | Version 1 -- 1988-03-03 -- D.N. Lynx Crowe
|
---|
| 5 | =============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[f7428b1] | 8 | #pragma once
|
---|
| 9 |
|
---|
[f40a309] | 10 | #ifdef DEBUGGER
|
---|
| 11 | #define DB_ENTR(mod) DB_Entr(mod)
|
---|
| 12 | #define DB_EXIT(mod) DB_Exit(mod)
|
---|
| 13 | #define DB_CMNT(mod) DB_Cmnt(mod)
|
---|
| 14 | #else
|
---|
| 15 | #define DB_ENTR(mod)
|
---|
| 16 | #define DB_EXIT(mod)
|
---|
| 17 | #define DB_CMNT(mod)
|
---|
| 18 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.