mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2025-01-29 20:06:43 +01:00
12 lines
337 B
C++
12 lines
337 B
C++
|
#ifndef _RAR_VOLUME_
|
||
|
#define _RAR_VOLUME_
|
||
|
|
||
|
void SplitArchive(Archive &Arc,FileHeader *fh,int64 *HeaderPos,
|
||
|
ComprDataIO *DataIO);
|
||
|
bool MergeArchive(Archive &Arc,ComprDataIO *DataIO,bool ShowFileName,
|
||
|
char Command);
|
||
|
void SetVolWrite(Archive &Dest,int64 VolSize);
|
||
|
bool AskNextVol(char *ArcName);
|
||
|
|
||
|
#endif
|