mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
29 lines
519 B
C++
Executable File
29 lines
519 B
C++
Executable File
// Archive/DebIn.h
|
|
|
|
#ifndef __ARCHIVE_DEB_IN_H
|
|
#define __ARCHIVE_DEB_IN_H
|
|
|
|
#include "Common/MyCom.h"
|
|
#include "../../IStream.h"
|
|
#include "DebItem.h"
|
|
|
|
namespace NArchive {
|
|
namespace NDeb {
|
|
|
|
class CInArchive
|
|
{
|
|
CMyComPtr<IInStream> m_Stream;
|
|
UInt64 m_Position;
|
|
|
|
HRESULT GetNextItemReal(bool &filled, CItemEx &itemInfo);
|
|
HRESULT Skeep(UInt64 numBytes);
|
|
public:
|
|
HRESULT Open(IInStream *inStream);
|
|
HRESULT GetNextItem(bool &filled, CItemEx &itemInfo);
|
|
HRESULT SkeepData(UInt64 dataSize);
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|