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.
14 lines
310 B
14 lines
310 B
#ifndef _DEBUG2_H_
|
|
#define _DEBUG2_H_
|
|
|
|
// Select 'File output' Or 'Normal VERBOSE'
|
|
//#define DEBUG2_FILE
|
|
|
|
#ifdef DEBUG2_FILE
|
|
#define DEBU2_FNAME "C:\\TEMP\\unilog.txt"
|
|
//#define DEBUG2_DUMP_USE
|
|
VOID DbgFPrint(LPCSTR, ...);
|
|
VOID DbgFDump(LPBYTE, UINT);
|
|
#endif // DEBUG2_FILE
|
|
|
|
#endif
|