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