Files
mir_server/server/DBServer/CustomExceptHander.cpp

11 lines
199 B
C++
Raw Normal View History

2025-01-09 17:45:40 +08:00
#include "StdAfx.h"
#include "StackWalker.h"
#ifdef WIN32
DWORD CustomExceptHandler(const LPEXCEPTION_POINTERS lpPointers)
{
SHOW_CALLSTACK();
return DefaultExceptHandler(lpPointers);
}
#endif