?? except.h
字號:
#ifndef _except_h_
#define _except_h_
#ifndef W2K_ONLY
#pragma warning( disable : 4102 ) /* suppress "unreferenced label" message */
/** The MSDN says nothing about __leave in try-except, but the compiler accepts it.
* This is how it is done in GCC (http://reactos.wox.org/index.php?page=gccseh):
* __leave // Jump to closing brace of try block.
* And so do we, jump to beginning of __except() and __finally.
*/
#define __except(filter) ___finally: if(0) //not supported: never execute this block
#define __try //always execute, nothing needed
#define __finally ___finally: //label for the "finally" block
#define __leave {goto ___finally;} //Jump to that label
#endif
#endif // _except_h_
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -