Last change
on this file since 354 was 354, checked in by stevenhl, 17 years ago |
Import untested baseline cmedia sources, work products and binaries
Binaries and work products should be deleted from repository.
once new builds are verified to work.
|
File size:
520 bytes
|
Line | |
---|
1 | //----------------------------------------------------------------------//
|
---|
2 | // //
|
---|
3 | // //
|
---|
4 | // //
|
---|
5 | // //
|
---|
6 | // //
|
---|
7 | // //
|
---|
8 | //----------------------------------------------------------------------//
|
---|
9 |
|
---|
10 | #ifndef __TRACE_H
|
---|
11 | #define __TRACE_H
|
---|
12 |
|
---|
13 |
|
---|
14 | #define NOTRACE
|
---|
15 |
|
---|
16 |
|
---|
17 | #ifdef NOTRACE
|
---|
18 | #define SYSTRACE(Major, Minor, Param)
|
---|
19 | #else
|
---|
20 | #define SYSTRACE(Major, Minor, Param) \
|
---|
21 | DevHelp_RAS((USHORT)Major, (USHORT)Minor, \
|
---|
22 | sizeof(Param), (PBYTE)&Param)
|
---|
23 | #endif
|
---|
24 |
|
---|
25 |
|
---|
26 | #endif
|
---|
27 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.