📄 types.h
字号:
#ifndef TYPES_H#define TYPES_H#ifndef __ASSEMBLY__typedef unsigned long ulong;typedef unsigned short ushort;typedef unsigned char uchar;typedef unsigned int uint;typedef unsigned char uint8;typedef unsigned short uint16;typedef unsigned long uint32;typedef signed char sint8;typedef signed short sint16;typedef signed long sint32;typedef volatile uint VUINT;typedef volatile uint32 VUINT32;typedef volatile uint16 VUINT16;typedef volatile uint8 VUINT8;typedef volatile uchar VUCHAR;typedef unsigned long time_t;typedef unsigned long clock_t;#ifndef __cplusplustypedef enum { true=1, false=0 } bool;#endif#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -