added maxDepth parameter to WalkFromException() (patch 1759239)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47766 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-07-28 00:14:53 +00:00
parent b2f0b9342a
commit ef81fe8b3f
5 changed files with 15 additions and 13 deletions

View File

@@ -91,12 +91,12 @@ public:
wxStackWalker(const char * WXUNUSED(argv0) = NULL) { }
virtual void Walk(size_t skip = 1, size_t maxDepth = 200);
virtual void WalkFromException();
virtual void WalkFromException(size_t maxDepth = 200);
// enumerate stack frames from the given context
void WalkFrom(const _CONTEXT *ctx, size_t skip = 1);
void WalkFrom(const _EXCEPTION_POINTERS *ep, size_t skip = 1);
void WalkFrom(const _CONTEXT *ctx, size_t skip = 1, size_t maxDepth = 200);
void WalkFrom(const _EXCEPTION_POINTERS *ep, size_t skip = 1, size_t maxDepth = 200);
};
#endif // _WX_MSW_STACKWALK_H_