mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 14:07:00 -06:00
12 lines
294 B
C
Executable File
12 lines
294 B
C
Executable File
// ExtractEngine.h
|
|
|
|
#ifndef ZIP7_INC_EXTRACT_ENGINE_H
|
|
#define ZIP7_INC_EXTRACT_ENGINE_H
|
|
|
|
#include "../../UI/Common/LoadCodecs.h"
|
|
|
|
HRESULT ExtractArchive(CCodecs *codecs, const FString &fileName, const FString &destFolder,
|
|
bool showProgress, bool &isCorrupt, UString &errorMessage);
|
|
|
|
#endif
|