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.

23 lines
434 B

  1. //
  2. // Prototypes for debug dump functions
  3. //
  4. #ifndef _DUMP_H_
  5. #define _DUMP_H_
  6. #ifdef DEBUG
  7. EXTERN_C LPCTSTR Dbg_GetGuid(REFGUID rguid, LPTSTR pszBuf, int cch);
  8. EXTERN_C LPCTSTR Dbg_GetBool(BOOL bVal);
  9. #else
  10. #define Dbg_GetGuid(rguid, pszBuf, cch) TEXT("")
  11. #define Dbg_GetBool(bVal) TEXT("")
  12. #define Dbg_GetAppCmd(appcmd) TEXT("")
  13. #endif // DEBUG
  14. #endif // _DUMP_H_