Source code of Windows XP (NT5)
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.

24 lines
630 B

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1996, Microsoft Corporation. All Rights Reserved.
  4. //
  5. // File: Log.h
  6. //
  7. // History: 18-Dec-96 PatHal Created.
  8. //
  9. //---------------------------------------------------------------------------
  10. #if defined(_DEBUG) || defined(TH_LOG)
  11. VOID ThLogWrite( HANDLE hLogFile, WCHAR *pwsz );
  12. HANDLE ThLogOpen( CONST CHAR *pszLog );
  13. VOID ThLogClose( HANDLE hLogFile );
  14. #else
  15. #define ThLogWrite( hLogFile, pwsz)
  16. #define ThLogOpen( pwszLog )
  17. #define ThDebugCloseLog( hLogFile )
  18. #endif // defined(_DEBUG) || defined(TH_LOG)