]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/stackwalk.h
compilation fix after wxCmdLineEntryDesc changes
[wxWidgets.git] / include / wx / msw / stackwalk.h
index 2d99a132b6df98d6c995388b011c7e3e3242dd59..a5f7e322acd5f165984ad3dc689a2fa0dfed0472 100644 (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_