Files
easy7zip/7zip/Archive/BZip2/BZip2Update.h
Igor Pavlov 0f60a4933b 4.34 beta
2016-05-28 00:15:46 +01:00

25 lines
401 B
C++
Executable File

// BZip2Update.h
#ifndef __BZIP2_UPDATE_H
#define __BZIP2_UPDATE_H
#include "../IArchive.h"
namespace NArchive {
namespace NBZip2 {
HRESULT UpdateArchive(
UInt64 unpackSize,
ISequentialOutStream *outStream,
int indexInClient,
UInt32 dictionary,
UInt32 numPasses,
#ifdef COMPRESS_MT
UInt32 numThreads,
#endif
IArchiveUpdateCallback *updateCallback);
}}
#endif