www.pudn.com > ucos+net.zip > types.h


#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