mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 19:14:56 -06:00
24 lines
330 B
C++
Executable File
24 lines
330 B
C++
Executable File
// BZip2Update.h
|
|
|
|
#pragma once
|
|
|
|
#ifndef __BZIP2_UPDATE_H
|
|
#define __BZIP2_UPDATE_H
|
|
|
|
#include "Common/Types.h"
|
|
|
|
#include "../IArchive.h"
|
|
|
|
namespace NArchive {
|
|
namespace NBZip2 {
|
|
|
|
HRESULT UpdateArchive(
|
|
UINT64 unpackSize,
|
|
IOutStream *outStream,
|
|
int indexInClient,
|
|
IArchiveUpdateCallback *updateCallback);
|
|
|
|
}}
|
|
|
|
#endif
|