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.

48 lines
677 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. stktrace.h
  5. Abstract:
  6. This module contains public declarations and definitions for capturing
  7. stack back traces.
  8. Author:
  9. Keith Moore (keithmo) 30-Apr-1997
  10. Revision History:
  11. --*/
  12. #ifndef _STKTRACE_H_
  13. #define _STKTRACE_H_
  14. #if defined(__cplusplus)
  15. extern "C" {
  16. #endif // __cplusplus
  17. USHORT
  18. NTAPI
  19. IISCaptureStackBackTrace(
  20. IN ULONG FramesToSkip,
  21. IN ULONG FramesToCapture,
  22. OUT PVOID *BackTrace,
  23. OUT PULONG BackTraceHash
  24. );
  25. #if defined(__cplusplus)
  26. } // extern "C"
  27. #endif // __cplusplus
  28. #endif // _STKTRACE_H_