mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 03:09:57 -06:00
20 lines
406 B
C
Executable File
20 lines
406 B
C
Executable File
// ExtractEngine.h
|
|
|
|
#ifndef __EXTRACTENGINE_H
|
|
#define __EXTRACTENGINE_H
|
|
|
|
#include "Common/String.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
|