mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 08:07:09 -06:00
20 lines
338 B
C
Executable File
20 lines
338 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
|
|
#ifdef _SILENT
|
|
, UString &resultMessage
|
|
#endif
|
|
);
|
|
|
|
#endif
|
|
|