Leaked source code of windows server 2003
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

  1. #ifndef _DEBUG2_H_
  2. #define _DEBUG2_H_
  3. // Select 'File output' Or 'Normal VERBOSE'
  4. //#define DEBUG2_FILE
  5. #ifdef DEBUG2_FILE
  6. #define DEBU2_FNAME "C:\\TEMP\\unilog.txt"
  7. //#define DEBUG2_DUMP_USE
  8. VOID DbgFPrint(LPCSTR, ...);
  9. VOID DbgFDump(LPBYTE, UINT);
  10. #endif // DEBUG2_FILE
  11. #endif