| 15 | |
| 16 | |
| 17 | void RAROptions::Init() |
| 18 | { |
| 19 | memset(this,0,sizeof(RAROptions)); |
| 20 | WinSize=0x2000000; |
| 21 | Overwrite=OVERWRITE_DEFAULT; |
| 22 | Method=3; |
| 23 | MsgStream=MSG_STDOUT; |
| 24 | ConvertNames=NAMES_ORIGINALCASE; |
| 25 | xmtime=EXTTIME_MAX; |
| 26 | FileSizeLess=INT64NDF; |
| 27 | FileSizeMore=INT64NDF; |
| 28 | HashType=HASH_CRC32; |
| 29 | #ifdef RAR_SMP |
| 30 | Threads=GetNumberOfThreads(); |
| 31 | #endif |
| 32 | #ifdef USE_QOPEN |
| 33 | QOpenMode=QOPEN_AUTO; |
| 34 | #endif |
| 35 | } |
nothing calls this directly
no test coverage detected