10 lines
175 B
C
10 lines
175 B
C
|
#ifndef __TRACING_H__
|
||
|
#define __TRACING_H__
|
||
|
|
||
|
void SetTracingLevel(int l);
|
||
|
void EnableTracing(BOOL on);
|
||
|
BOOL TracingEnabled();
|
||
|
|
||
|
BOOL Trace(int l, const char* fmt, ...);
|
||
|
|
||
|
#endif
|