mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 11:14:58 -06:00
21 lines
447 B
C
Executable File
21 lines
447 B
C
Executable File
// GUI/ExtractGUI.h
|
|
|
|
#ifndef __EXTRACT_GUI_H
|
|
#define __EXTRACT_GUI_H
|
|
|
|
#include "../Common/Extract.h"
|
|
|
|
#include "../FileManager/ExtractCallback.h"
|
|
|
|
HRESULT ExtractGUI(
|
|
CCodecs *codecs,
|
|
const CIntVector &formatIndices,
|
|
UStringVector &archivePaths,
|
|
UStringVector &archivePathsFull,
|
|
const NWildcard::CCensorNode &wildcardCensor,
|
|
CExtractOptions &options,
|
|
bool showDialog,
|
|
CExtractCallbackImp *extractCallback);
|
|
|
|
#endif
|