Changes between Version 18 and Version 19 of FileCompression
- Timestamp:
- Jan 11, 2012, 11:00:25 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FileCompression
v18 v19 134 134 135 135 {{{ 136 int boinc_zip(int bZipType, const std::string szFileZip, 137 const ZipFileList* pvectszFileIn); 138 int boinc_zip(int bZipType, const std::string szFileZip, 139 const std::string szFileIn); 136 #!cpp 137 int boinc_zip(int bZipType, const std::string szFileZip, const ZipFileList* pvectszFileIn); 138 int boinc_zip(int bZipType, const std::string szFileZip, const std::string szFileIn); 140 139 int boinc_zip(int bZipType, const char* szFileZip, const char* szFileIn); 141 140 }}} … … 151 150 152 151 {{{ 152 #!cpp 153 153 bool boinc_filelist( 154 154 const std::string directory, 155 155 const std::string pattern, 156 156 ZipFileList* pList, 157 158 157 const unsigned char ucSort = SORT_NAME | SORT_DESCENDING, 158 const bool bClear = true 159 159 ); 160 160 }}} … … 192 192 193 193 {{{ 194 #!cpp 194 195 #ifndef _QCN_GZIP_H_ 195 196 #define _QCN_GZIP_H_ … … 205 206 206 207 {{{ 208 #!cpp 207 209 #include <stdio.h> 208 210 #include "filesys.h"