You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
524 B
34 lines
524 B
////////////////////////////////////////////////
|
|
// fudebug.h
|
|
//
|
|
// September.3,1997 H.Ishida (FPL)
|
|
//
|
|
// COPYRIGHT(C) FUJITSU LIMITED 1997
|
|
|
|
#ifndef fudebug_h
|
|
#define fudebug_h
|
|
|
|
#include <minidrv.h>
|
|
|
|
#if DBG && defined(TRACE_DDI)
|
|
#define TRACEDDI(a) dbgPrintf a;
|
|
#else
|
|
#define TRACEDDI(a)
|
|
#endif
|
|
|
|
|
|
#if DBG && defined(TRACE_OUT)
|
|
#define TRACEOUT(a) dbgPrintf a;
|
|
#else
|
|
#define TRACEOUT(a)
|
|
#endif
|
|
|
|
#if DBG
|
|
void dbgPrintf(LPSTR pszMsg, ...);
|
|
#endif
|
|
|
|
|
|
#endif // !fudebug_h
|
|
|
|
// end of fudebug.h
|
|
|