types.h

来自「ucos_ii基础上加上网络功能」· C头文件 代码 · 共 34 行

H
34
字号
#ifndef TYPES_H
#define TYPES_H

typedef unsigned char			BYTE;
typedef unsigned short			WORD;
typedef unsigned long			DWORD;



typedef unsigned char			BOOLEAN;
typedef unsigned char			INT8U;
typedef char				INT8S;
typedef unsigned short			INT16U;
typedef short				INT16S;
typedef unsigned long			INT32U;
typedef long				INT32S;
typedef float				FP32;
typedef double				FP64;

typedef	unsigned char	u_char;
typedef	unsigned short	u_short;
typedef	unsigned int	u_int;
typedef	unsigned long	u_long;

typedef unsigned char	unchar;		/* Sys V compatibility */
typedef	unsigned short	ushort;		/* Sys V compatibility */
typedef	unsigned int	uint;		/* Sys V compatibility */
typedef unsigned long	ulong;		/* Sys V compatibility */
typedef char *				caddr_t;


typedef INT32U				OS_STK;
#endif

⌨️ 快捷键说明

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