📄 type.h
字号:
//type define
#if !defined( TYPE__H )
#define TYPE__H
typedef enum
{
FALSE = 0,
TRUE = !FALSE
} BOOL;
/*typedef float f32;
typedef long s32;
typedef unsigned long u32;
typedef short s16;
typedef unsigned short u16;
typedef unsigned char u8;
typedef signed char s8;*/
//new
typedef unsigned char u8; // BYTE is 8-bit in length
typedef unsigned short u16; // WORD is 16-bit in length
typedef unsigned long u32; // Uint32 is 32-bit in length
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -