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.

43 lines
798 B

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