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