基本数据类型定义

//基本数据类型定义
typedef unsigned long	 	RTCbool;
typedef unsigned char	    RTCbyte;
typedef long			    RTCint;
typedef	unsigned long	    RTCuint;
#if defined(_SOLARIS) || defined(_HPUNIX) || defined(_AIX) || defined(_LINUX)
typedef unsigned long long  RTC2uint;
#else
typedef unsigned __int64    RTC2uint;
#endif
typedef float			    RTCfloat;
typedef	double			    RTCdouble;
typedef unsigned char*      RTCbyteArray;
typedef	long*			    RTCintArray;
typedef unsigned long*      RTCuintArray;
typedef RTC2uint*		RTC2uintArray;
typedef float*			    RTCfloatArray;
typedef double*			    RTCdoubleArray;

  

posted on 2022-01-24 02:40  lydstory  阅读(50)  评论(0)    收藏  举报

导航