File indexing completed on 2025-01-18 10:11:29
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #include "Compression.h"
0012
0013
0014
0015
0016
0017 #ifndef ROOT_RZip
0018 #define ROOT_RZip
0019
0020 extern "C" unsigned long R__crc32(unsigned long crc, const unsigned char* buf, unsigned int len);
0021
0022 extern "C" unsigned long R__memcompress(char *tgt, unsigned long tgtsize, char *src, unsigned long srcsize);
0023
0024 extern "C" void R__zipMultipleAlgorithm(int cxlevel, int *srcsize, char *src, int *tgtsize, char *tgt, int *irep, ROOT::RCompressionSetting::EAlgorithm::EValues);
0025
0026
0027
0028
0029
0030 extern "C" void R__zip(int cxlevel, int *srcsize, char *src, int *tgtsize, char *tgt, int *irep);
0031
0032 extern "C" void R__unzip(int *srcsize, unsigned char *src, int *tgtsize, unsigned char *tgt, int *irep);
0033
0034 extern "C" int R__unzip_header(int *srcsize, unsigned char *src, int *tgtsize);
0035
0036 enum { kMAXZIPBUF = 0xffffff };
0037
0038 #endif