~ubuntu-branches/ubuntu/vivid/unrar-nonfree/vivid

« back to all changes in this revision

Viewing changes to archive.hpp

  • Committer: Package Import Robot
  • Author(s): Martin Meredith
  • Date: 2015-02-03 12:58:01 UTC
  • mfrom: (1.1.18) (5.1.18 sid)
  • Revision ID: package-import@ubuntu.com-20150203125801-od6ev8cqy1er51vz
Tags: 1:5.2.5-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
    void AddSubData(byte *SrcData,uint64 DataSize,File *SrcFile,
86
86
         const wchar *Name,uint Flags);
87
87
    bool ReadSubData(Array<byte> *UnpData,File *DestFile);
88
 
    HEADER_TYPE GetHeaderType() {return(CurHeaderType);};
89
 
    void WriteCommentData(byte *Data,size_t DataSize,bool FileComment);
90
 
    RAROptions* GetRAROptions() {return(Cmd);}
 
88
    HEADER_TYPE GetHeaderType() {return CurHeaderType;};
 
89
    RAROptions* GetRAROptions() {return Cmd;}
91
90
    void SetSilentOpen(bool Mode) {SilentOpen=Mode;}
92
91
#ifdef USE_QOPEN
 
92
    bool Open(const wchar *Name,uint Mode=FMF_READ);
93
93
    int Read(void *Data,size_t Size);
94
94
    void Seek(int64 Offset,int Method);
95
95
    int64 Tell();