Hi, the ioapi.h belongs zlib(MiniZip) package, obviously it has not been ported to you plattform, the macros seem to expand badly. Please run the preprocessor manually, thus we can see, to what they get expandet:
cpp -DHAVE_CONFIG_H -I. ioapi.c -o foo Search in foo for the pattern '# 127 "ioapi.h"', the next lines are, what the macros are axpanding to. # 127 "ioapi.h" typedef voidpf ( *open_file_func) (voidpf opaque, const char* filename, int mode); typedef uLong ( *read_file_func) (voidpf opaque, voidpf stream, void* buf, uLong size); typedef uLong ( *write_file_func) (voidpf opaque, voidpf stream, const void* buf, uLong size); typedef int ( *close_file_func) (voidpf opaque, voidpf stream); typedef int ( *testerror_file_func) (voidpf opaque, voidpf stream); typedef long ( *tell_file_func) (voidpf opaque, voidpf stream); typedef long ( *seek_file_func) (voidpf opaque, voidpf stream, uLong offset, int origin); Regards, Julian ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://ad.doubleclick.net/clk;258768047;13503038;j? http://info.appdynamics.com/FreeJavaPerformanceDownload.html _______________________________________________ Tntnet-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/tntnet-general
