?? cdecl.h
字號:
#ifndef CDECL_HEADER_FILE#define CDECL_HEADER_FILE/* * Define macros to specify the standard C calling convention * The macros are designed so that they will work with all * supported C/C++ compilers. * * To use define your function prototype like this: * * return_type PRE_CDECL func_name( args ) POST_CDECL; * * For example: * * int PRE_CDECL f( int x, int y) POST_CDECL; */#if defined(__GNUC__)# define PRE_CDECL# define POST_CDECL __attribute__((cdecl))#else# define PRE_CDECL __cdecl# define POST_CDECL#endif#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -