00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include <sys/types.h>
00025
00026 #define BASIC_TYPES_DEFINED
00027
00028 #ifndef VERSION
00029 #define VERSION "0.1cvs"
00030 #endif
00031
00032 #define MACOSX
00033
00034 #define HAVE_SYS_STAT_H 1
00035 #define HAVE_SYS_TYPES_H 1
00036
00037 #undef DATA_PATH
00038
00039 typedef uint8_t uint8;
00040 typedef uint16_t uint16;
00041 typedef uint32_t uint32;
00042
00043 typedef int8_t sint8;
00044 typedef int16_t sint16;
00045 typedef int32_t sint32;
00046
00047 typedef uintptr_t uintptr;
00048 typedef intptr_t sintptr;
00049
00050 #ifdef __cplusplus
00051 extern "C" {
00052 #endif
00053
00054 const char * macosxResourcePath();
00055
00056 #ifdef __cplusplus
00057 }
00058 #endif
00059
00060