?? stdtypes.h
字號:
#ifndef STDTYPES_H#define STDTYPES_H/* These rather convoluted ifndef's are required because both FALSE, TRUE and BOOLEAN are defined by various windows and windows/nt headers. When these headers are included, a redefine error results without these ifndefs. */ typedef enum {#ifndef FALSE FALSE = 0, #endif#ifndef TRUE TRUE = 1,#endif BOGUS} BoolVals;typedef int Boolean;typedef unsigned short int ushort;typedef unsigned int uint;typedef unsigned char uchar;typedef char * pChar;#define LOCAL static#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -