📄 bltypes.h
字号:
#ifndef __BLTYPES_H_
#define __BLTYPES_H_
#ifndef uchar
typedef unsigned char uchar;
#endif //uchar
#ifndef ubyte
typedef unsigned char ubyte;
#endif //ubyte
#ifndef bool
typedef bit bool;
#endif //bool
#ifndef true
#define true 1
#endif //true
#ifndef false
#define false 0
#endif //false
#ifndef uint
typedef unsigned int uint;
#endif //uint
#ifndef ulong
typedef unsigned long int ulong;
#endif //ulong
#ifndef ushort
typedef unsigned short ushort;
#endif //ushort
#endif //__COMMON_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -