Files
mir_server/server/GateServer/CustomExceptHander.cpp
aixianling 5c9f1dae4a init
2025-01-09 17:45:40 +08:00

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