HomeSort by relevance Sort by last modified time
    Searched defs:CFileBase (Results 1 - 3 of 3) sorted by null

  /external/lzma/CPP/Common/
C_FileIO.h 16 class CFileBase
22 CFileBase(): _handle(-1) {};
23 ~CFileBase() { Close(); }
29 class CInFile: public CFileBase
37 class COutFile: public CFileBase
  /external/lzma/CPP/Windows/
FileIO.h 26 class CFileBase
45 CFileBase(): _handle(INVALID_HANDLE_VALUE) {};
46 ~CFileBase();
65 class CInFile: public CFileBase
113 class COutFile: public CFileBase
FileIO.cpp 104 CFileBase::~CFileBase() { Close(); }
106 bool CFileBase::Create(LPCTSTR fileName, DWORD desiredAccess,
131 bool CFileBase::Create(LPCWSTR fileName, DWORD desiredAccess,
159 bool CFileBase::Close()
169 bool CFileBase::GetPosition(UInt64 &position) const
174 bool CFileBase::GetLength(UInt64 &length) const
193 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const
213 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition)
218 bool CFileBase::SeekToBegin()
    [all...]

Completed in 72 milliseconds