mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 04:07:08 -06:00
17 lines
252 B
C++
Executable File
17 lines
252 B
C++
Executable File
// Archive/LzmaIn.h
|
|
|
|
#ifndef __ARCHIVE_LZMA_IN_H
|
|
#define __ARCHIVE_LZMA_IN_H
|
|
|
|
#include "LzmaItem.h"
|
|
#include "../../IStream.h"
|
|
|
|
namespace NArchive {
|
|
namespace NLzma {
|
|
|
|
HRESULT ReadStreamHeader(ISequentialInStream *inStream, CHeader &st);
|
|
|
|
}}
|
|
|
|
#endif
|