integer.h

来自「WAV 数字输出播放器」· C头文件 代码 · 共 24 行

H
24
字号
#ifndef _INTEGER
typedef signed int		INT;
typedef unsigned int	UINT;

typedef unsigned char	BYTE;
typedef unsigned char	UCHAR;
typedef char			CHAR;

typedef unsigned short	WORD;
typedef unsigned short	USHORT;
typedef short			SHORT;

typedef unsigned long	DWORD;
typedef unsigned long	ULONG;
typedef long			LONG;

typedef unsigned char	BOOL;

#define FALSE	0
#define TRUE	1

#define _INTEGER
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?