sehmap.h
来自「希望我上传的这些东西可以对搞编程的程序员有点小小的帮助!谢谢!」· C头文件 代码 · 共 29 行
H
29 行
/*
SEHMAP.H - Map old-style structured exception handling to correct names.
The mapping of structured exception handling statements from {try, except,
finally, leave} to their proper names (prefaced by "__") has been removed
from win32.mak. This header is provided solely for compatibility with
source code that used the older convention.
*/
#ifndef __cplusplus
#pragma option push -b -a8 -pc -A- /*P_O_Push*/
#undef try
#undef except
#undef finally
#undef leave
#define try __try
#define except __except
#define finally __finally
#define leave __leave
#define abnormal_termination() __abnormal_termination
#define exception_code() __exception_code
#define exception_info() ((PEXCEPTION_POINTERS)__exception_info)
#pragma option pop /*P_O_Pop*/
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?