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.

28 lines
623 B

  1. //+------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1993.
  5. //
  6. // File: bmlog.hxx
  7. //
  8. // Contents: Benchmark test error logging
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 29-July-93 t-martig Created
  15. //
  16. //--------------------------------------------------------------------------
  17. #ifndef _BMLOG_HXX_
  18. #define _BMLOG_HXX_
  19. #include <bmoutput.hxx>
  20. void LogTo (CTestOutput *_logOutput);
  21. void LogSection (LPTSTR lpszName);
  22. int Log (LPTSTR lpszActionName, SCODE hr);
  23. int Log (LPTSTR lpszActionName, ULONG ulCode);
  24. #endif