29 lines
424 B
C++
29 lines
424 B
C++
|
#include "rar.hpp"
|
||
|
|
||
|
RAROptions::RAROptions()
|
||
|
{
|
||
|
Init();
|
||
|
}
|
||
|
|
||
|
|
||
|
RAROptions::~RAROptions()
|
||
|
{
|
||
|
memset(this,0,sizeof(RAROptions));
|
||
|
}
|
||
|
|
||
|
|
||
|
void RAROptions::Init()
|
||
|
{
|
||
|
memset(this,0,sizeof(RAROptions));
|
||
|
WinSize=0x400000;
|
||
|
Overwrite=OVERWRITE_DEFAULT;
|
||
|
Method=3;
|
||
|
MsgStream=MSG_STDOUT;
|
||
|
ConvertNames=NAMES_ORIGINALCASE;
|
||
|
ProcessEA=true;
|
||
|
xmtime=EXTTIME_HIGH3;
|
||
|
CurVolNum=0;
|
||
|
FileSizeLess=INT64NDF;
|
||
|
FileSizeMore=INT64NDF;
|
||
|
}
|