]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/stackwalk.h
fix wxMDIChidFrame::GetPosition() (patch 1626610)
[wxWidgets.git] / include / wx / msw / stackwalk.h
index b003181bc880aefb5f430da3824bd0d6e3c67a2a..2d99a132b6df98d6c995388b011c7e3e3242dd59 100644 (file)
@@ -12,6 +12,8 @@
 #ifndef _WX_MSW_STACKWALK_H_
 #define _WX_MSW_STACKWALK_H_
 
+#include "wx/arrstr.h"
+
 // these structs are declared in windows headers
 struct _CONTEXT;
 struct _EXCEPTION_POINTERS;
@@ -84,9 +86,11 @@ private:
 class WXDLLIMPEXP_BASE wxStackWalker : public wxStackWalkerBase
 {
 public:
-    wxStackWalker() { }
+    // we don't use ctor argument, it is for compatibility with Unix version
+    // only
+    wxStackWalker(const char * WXUNUSED(argv0) = NULL) { }
 
-    virtual void Walk(size_t skip = 1);
+    virtual void Walk(size_t skip = 1, size_t maxDepth = 200);
     virtual void WalkFromException();