?? types.h
字號:
/////////////////////////////////////////////////////////////////////////////////// Copyright(c) 2001-2002 Emdoor Electronic & Technology Co,.ltd. All rights reserved.// // Module name:// main.c// // Description:// // // // Created:// 2002.10/////////////////////////////////////////////////////////////////////////////////#ifndef _TYPES_H_4782374832742374327423#define _TYPES_H_4782374832742374327423typedef unsigned long ulong;typedef unsigned short ushort;typedef unsigned char uchar;typedef unsigned int uint;#ifndef __cplusplustypedef int bool;#define true 1#define false 0#endif// print in hex value.// type= 8 : print in format "ff".// type=16 : print in format "ffff".// type=32 : print in format "ffffffff".typedef enum { VAR_LONG=32, VAR_SHORT=16, VAR_CHAR=8} VAR_TYPE;#ifndef NULL#define NULL (void *)0#endif#endif // end _TYPES_H_4782374832742374327423.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -