00001 #ifndef __COMPRESS_H_ 00002 #define __COMPRESS_H_ 00003 00004 #ifdef __cplusplus 00005 extern "C" { 00006 #endif 00007 extern void compressFloatingPoint(void *src, void *dst, int s, int *compressSize, void *bData); 00008 extern void decompressFloatingPoint(void *cData, void *dData, int s, int compressSize, void *bData); 00009 #ifdef __cplusplus 00010 } 00011 #endif 00012 #endif