Changes between Version 18 and Version 19 of FileCompression


Ignore:
Timestamp:
Jan 11, 2012, 11:00:25 PM (12 years ago)
Author:
Christian Beer
Comment:

added code highlighting

Legend:

Unmodified
Added
Removed
Modified
  • FileCompression

    v18 v19  
    134134
    135135{{{
    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
     137int boinc_zip(int bZipType, const std::string szFileZip, const ZipFileList* pvectszFileIn);
     138int boinc_zip(int bZipType, const std::string szFileZip, const std::string szFileIn);
    140139int boinc_zip(int bZipType, const char* szFileZip, const char* szFileIn);
    141140}}}
     
    151150
    152151{{{
     152#!cpp
    153153bool boinc_filelist(
    154         const std::string directory,
     154    const std::string directory,
    155155    const std::string pattern,
    156156    ZipFileList* pList,
    157         const unsigned char ucSort = SORT_NAME | SORT_DESCENDING,
    158         const bool bClear = true
     157    const unsigned char ucSort = SORT_NAME | SORT_DESCENDING,
     158    const bool bClear = true
    159159);
    160160}}}
     
    192192
    193193{{{
     194#!cpp
    194195#ifndef _QCN_GZIP_H_
    195196#define _QCN_GZIP_H_
     
    205206
    206207{{{
     208#!cpp
    207209#include <stdio.h>
    208210#include "filesys.h"