11 lines
199 B
C++
11 lines
199 B
C++
|
|
#include "StdAfx.h"
|
|||
|
|
#include "StackWalker.h"
|
|||
|
|
|
|||
|
|
#ifdef WIN32
|
|||
|
|
DWORD CustomExceptHandler(const LPEXCEPTION_POINTERS lpPointers)
|
|||
|
|
{
|
|||
|
|
SHOW_CALLSTACK();
|
|||
|
|
return DefaultExceptHandler(lpPointers);
|
|||
|
|
}
|
|||
|
|
#endif
|