Welcome to mirror list, hosted at ThFree Co, Russian Federation.

recvol.hpp « Original « Rar29 « Compress « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a0abe58ab291b215fbbc886edd5ee7af281f65d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _RAR_RECVOL_
#define _RAR_RECVOL_

class RecVolumes
{
  private:
    File *SrcFile[256];
    Array<byte> Buf;
  public:
    RecVolumes();
    ~RecVolumes();
    void Make(RAROptions *Cmd,char *ArcName,wchar *ArcNameW);
    bool Restore(RAROptions *Cmd,const char *Name,const wchar *NameW,bool Silent);
};

#endif