chromium/third_party/unrar/src/rawread.cpp

#include "rar.hpp"

RawRead::RawRead()
{}


RawRead::RawRead(File *SrcFile)
{}


void RawRead::Reset()
{}


size_t RawRead::Read(size_t Size)
{}


void RawRead::Read(byte *SrcData,size_t Size)
{}


byte RawRead::Get1()
{}


ushort RawRead::Get2()
{}


uint RawRead::Get4()
{}


uint64 RawRead::Get8()
{}


uint64 RawRead::GetV()
{}


// Return a number of bytes in current variable length integer.
uint RawRead::GetVSize(size_t Pos)
{}


size_t RawRead::GetB(void *Field,size_t Size)
{}


void RawRead::GetW(wchar *Field,size_t Size)
{}


uint RawRead::GetCRC15(bool ProcessedOnly) // RAR 1.5 block CRC.
{}


uint RawRead::GetCRC50() // RAR 5.0 block CRC.
{}


// Read vint from arbitrary byte array.
uint64 RawGetV(const byte *Data,uint &ReadPos,uint DataSize,bool &Overflow)
{}