You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Just for other processes with default-values for options and symPath
145
146
StackWalker(DWORD dwProcessId, HANDLE hProcess);
147
+
148
+
// For showing stack trace after __except or catch
149
+
StackWalker(ExceptType extype, int options = OptionsAll, PEXCEPTION_POINTERS exp = NULL);
146
150
};
147
151
```
148
152
@@ -159,7 +163,7 @@ public:
159
163
160
164
### Displaying the callstack of an exception
161
165
162
-
With this `StackWalker` you can also display the callstack inside an exception handler. You only need to write a filter-function which does the stack-walking:
166
+
With this `StackWalker` you can also display the callstack inside an structured exception handler. You only need to write a filter-function which does the stack-walking:
0 commit comments