?? newcomm.h
字號:
/* SCCSID @(#)newcomm.h 1.2 12/3/97 */ #ifndef NEWCOMM_H#define NEWCOMM_H#define FALSE 0#define TRUE 1typedef unsigned char BYTE;typedef unsigned short WORD;typedef unsigned long DWORD;typedef union { BYTE b[4]; DWORD l;} align_long_t;typedef union { BYTE b[2]; WORD s;} align_short_t;typedef union { align_short_t as[2]; DWORD l;} align_head_t;typedef union { short s[2]; DWORD l;} align_data_t;typedef union { align_short_t align_short[2]; DWORD l;} short_long_t;DWORD switch_byte(DWORD datad);WORD low_WORD(DWORD datad);WORD high_WORD(DWORD datad);#define atoi(s) gx_strtol(s, 0x0, 10)#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -