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