📄 types.h
字号:
#ifndef _TYPES_H#define _TYPES_H//define a byte typedef signed char byte;//define unsigned types;typedef unsigned char ubyte;/* Linux already has these definitions */#ifndef __linux__typedef unsigned short ushort;typedef unsigned int uint;typedef unsigned long ulong;#endif//define a booleantypedef ubyte bool;#define __pack__ __attribute__ ((packed))/* Maybe we should decide whether to use the above typedefs or these */typedef unsigned char BYTE;typedef unsigned short WORD;typedef unsigned long DWORD;#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -