mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 05:15:00 -06:00
18 lines
268 B
C++
Executable File
18 lines
268 B
C++
Executable File
// TarIn.h
|
|
|
|
#ifndef __ARCHIVE_TAR_IN_H
|
|
#define __ARCHIVE_TAR_IN_H
|
|
|
|
#include "../../IStream.h"
|
|
|
|
#include "TarItem.h"
|
|
|
|
namespace NArchive {
|
|
namespace NTar {
|
|
|
|
HRESULT ReadItem(ISequentialInStream *stream, bool &filled, CItemEx &itemInfo, AString &error);
|
|
|
|
}}
|
|
|
|
#endif
|