mirror of https://github.com/tongzx/nt5src
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
37 lines
458 B
/*++
|
|
|
|
Copyright (C) 1999-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
STKTRACE.H
|
|
|
|
Abstract:
|
|
|
|
Symbolic stack trace
|
|
|
|
History:
|
|
|
|
raymcc 27-May-99
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _STKTRACE_H_
|
|
#define _STKTRACE_H_
|
|
|
|
struct StackTrace
|
|
{
|
|
static BOOL m_bActive;
|
|
DWORD m_dwCount;
|
|
DWORD m_dwAddresses[1];
|
|
};
|
|
|
|
BOOL StackTrace_Init();
|
|
void StackTrace_Delete(StackTrace *pMem);
|
|
StackTrace *StackTrace__NewTrace();
|
|
char *StackTrace_Dump(StackTrace *pTrace);
|
|
|
|
#endif
|
|
|
|
|