mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2025-01-13 20:39:09 +01:00
02da650191
- added snes_gx 4.3.4
17 lines
321 B
C++
17 lines
321 B
C++
#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
|