wxStackFrame represents a single stack frame, or a single function in the call stack, and is used exclusively together with wxStackWalker, see there for a more detailed discussion.
Derived from
No base class
Include files
<wx/stackwalk.h>
Only available if wxUSE_STACKWALKER is , currently only
implemented for Win32 and Unix versions using recent version of GNU libc.
See also
Return the address of this frame.
wxString GetFileName(void) const
Return the name of the file containing this frame, empty if unavailable (typically because debug info is missing).
Use HasSourceLocation to check whether the file name is available.
Get the level of this frame (deepest/innermost one is ).
Return the line number of this frame, if unavailable.
See also
wxString GetModule(void) const
Get the module this function belongs to (empty if not available).
Return the unmangled (if possible) name of the function containing this frame.
Return the return address of this frame.
bool GetParam(size_t n, wxString * type, wxString * name, wxString * value) const
Get the name, type and value (in text form) of the given parameter. Any pointer may be NULL if you're not interested in the corresponding value.
Return TRUEif at least some values could be retrieved.
This function currently is only implemented under Win32 and requires a PDB file.
size_t GetParamCount(void) const
Return the number of parameters of this function (may return if we
can't retrieve the parameters info even although the function does have
parameters).
bool HasSourceLocation(void) const
Return TRUEif we have the file name and line number for this frame.
ymasuda 平成17年11月19日