//基本数据类型定义
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;