Merge pull request #4852 from FernetMenta/aefixes
[vuplus_xbmc] / lib / UnrarXLib / options.cpp
1 #include "rar.hpp"
2
3 RAROptions::RAROptions()
4 {
5   Init();
6 }
7
8
9 RAROptions::~RAROptions()
10 {
11   memset(this,0,sizeof(RAROptions));
12 }
13
14
15 void RAROptions::Init()
16 {
17   memset(this,0,sizeof(RAROptions));
18   WinSize=0x400000;
19   Overwrite=OVERWRITE_ASK;
20   Method=3;
21   MsgStream=MSG_STDOUT;
22   ConvertNames=NAMES_ORIGINALCASE;
23   ProcessEA=true;
24   xmtime=EXTTIME_HIGH3;
25   CurVolNum=0;
26 }