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

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