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.

34 lines
788 B

  1. /*++
  2. 1998 Seagate Software, Inc. All rights reserved.
  3. Module Name:
  4. tskTrace.h
  5. Abstract:
  6. This header file defines the part of the task manager code that is
  7. responsible for tracing task manager specific parameters.
  8. Author:
  9. Cat Brant [cbrant] 7-Det-1996
  10. Revision History:
  11. --*/
  12. #ifndef _TSKTRACE_H_
  13. #define _TSKTRACE_H_
  14. // Helper Functions
  15. //
  16. // NOTE: Be careful with some of these helper functions, since they
  17. // use static memory and a second call to the function will overwrite
  18. // the results of the first call to the function.
  19. extern const OLECHAR* TmFsaRequestActionAsString(FSA_REQUEST_ACTION requestAction);
  20. extern const OLECHAR* TmFsaResultActionAsString(FSA_RESULT_ACTION resultAction);
  21. #endif // _TSKTRACE_