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.

37 lines
458 B

  1. /*++
  2. Copyright (C) 1999-2001 Microsoft Corporation
  3. Module Name:
  4. STKTRACE.H
  5. Abstract:
  6. Symbolic stack trace
  7. History:
  8. raymcc 27-May-99
  9. --*/
  10. #ifndef _STKTRACE_H_
  11. #define _STKTRACE_H_
  12. struct StackTrace
  13. {
  14. static BOOL m_bActive;
  15. DWORD m_dwCount;
  16. DWORD m_dwAddresses[1];
  17. };
  18. BOOL StackTrace_Init();
  19. void StackTrace_Delete(StackTrace *pMem);
  20. StackTrace *StackTrace__NewTrace();
  21. char *StackTrace_Dump(StackTrace *pTrace);
  22. #endif