00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef __XB_XTYPES_H__
00040 #define __XB_XTYPES_H__
00041
00042 #include <stdio.h>
00043
00047
00048
00050 typedef unsigned long int xbULong;
00051
00053
00055 typedef unsigned short int xbUShort;
00056
00058
00060 typedef short int xbShort;
00061 typedef long xbLong;
00062
00063
00065
00067 typedef float xbFloat;
00068
00069
00071
00073 typedef double xbDouble;
00074
00076
00078 typedef short int xbBool;
00079
00081
00083 #ifdef XB_LOCKING_ON
00084 #ifdef __WIN32__
00085 #else
00086 #endif
00087 #endif // XB_LOCKING_ON
00088 #endif // __XB_XTYPES_H__
00089
00090
00091 #if defined(HAVE_FSEEKO) && defined(HAVE_FTELLO) && defined(XB_LARGEFILE_SUPPORT)
00092 #define _ftell ftello
00093 #define _fseek fseeko
00094 typedef off_t xbOffT;
00095 #else
00096 #define _ftell ftell
00097 #define _fseek fseek
00098 typedef long xbOffT;
00099 #endif