home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 5036 / source.7z / x_zlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  2012-01-01  |  393 b   |  12 lines

  1. #ifndef __XENTAX_ZLIB_H
  2. #define __XENTAX_ZLIB_H
  3.  
  4. bool CompressZLIB(ifstream& ifile, ofstream& ofile);
  5. bool CompressZLIB(ifstream& ifile, ofstream& ofile, int level);
  6.  
  7. bool DecompressZLIB(ifstream& ifile, ofstream& ofile);
  8. bool DecompressZLIB(ifstream& ifile, ofstream& ofile, int windowBits);
  9. bool DecompressZLIB(ifstream& ifile, size_t n, ofstream& ofile, int windowBits);
  10.  
  11. #endif
  12.