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

11 lines
552 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
/************************************************************************/
/* 自定义SEH异常处理Handler输出异常类型、异常发生地址等信息并且进行栈回溯。用于解决
某些不是 特别重要的异常发生被捕获后,继续程序的执行,但是可能导致的一些潜在的问题不被发现,
导致后面很定位的问题。
/************************************************************************/
#ifdef WIN32
DWORD CustomExceptHandler(const LPEXCEPTION_POINTERS lpPointers);
#endif