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