MCPcopy Create free account
hub / github.com/JochenKalmbach/StackWalker / ExpFilter

Function ExpFilter

Main/StackWalker/main.cpp:186–192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

184
185#ifdef EXCEPTION_FILTER_TEST
186LONG WINAPI ExpFilter(EXCEPTION_POINTERS* pExp, DWORD dwExpCode)
187{
188 //StackWalker sw; // output to default (Debug-Window)
189 StackWalkerToConsole sw; // output to the console
190 sw.ShowCallstack(GetCurrentThread(), pExp->ContextRecord);
191 return EXCEPTION_EXECUTE_HANDLER;
192}
193void ExpTest5()
194{
195 char* p = NULL;

Callers 1

TestExceptionWalkingFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestExceptionWalkingFunction · 0.68