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