MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / File

Method File

Libraries/unrar/file.cpp:3–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include "rar.hpp"
2
3File::File()
4{
5 hFile=FILE_BAD_HANDLE;
6 *FileName=0;
7 NewFile=false;
8 LastWrite=false;
9 HandleType=FILE_HANDLENORMAL;
10 SkipClose=false;
11 IgnoreReadErrors=false;
12 ErrorType=FILE_SUCCESS;
13 OpenShared=false;
14 AllowDelete=true;
15 AllowExceptions=true;
16 PreserveAtime=false;
17#ifdef _WIN_ALL
18 NoSequentialRead=false;
19 CreateMode=FMF_UNDEFINED;
20#endif
21}
22
23
24File::~File()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected