This commit is contained in:
Igor Pavlov
2005-05-30 00:00:00 +00:00
committed by Kornel Lesiński
parent 8c1b5c7b7e
commit 3c510ba80b
926 changed files with 40559 additions and 23519 deletions

View File

@@ -1,7 +1,5 @@
// Archive/TarIn.h
#pragma once
#ifndef __ARCHIVE_TAR_IN_H
#define __ARCHIVE_TAR_IN_H
@@ -16,15 +14,15 @@ namespace NTar {
class CInArchive
{
CMyComPtr<IInStream> m_Stream;
UINT64 m_Position;
UInt64 m_Position;
HRESULT ReadBytes(void *data, UINT32 size, UINT32 &processedSize);
HRESULT ReadBytes(void *data, UInt32 size, UInt32 &processedSize);
public:
HRESULT Open(IInStream *inStream);
HRESULT GetNextItemReal(bool &filled, CItemEx &itemInfo);
HRESULT GetNextItem(bool &filled, CItemEx &itemInfo);
HRESULT Skeep(UINT64 numBytes);
HRESULT SkeepDataRecords(UINT64 dataSize);
HRESULT Skeep(UInt64 numBytes);
HRESULT SkeepDataRecords(UInt64 dataSize);
};
}}