blob: b7f79657903e636a8f9373f10a8c935b3f917cab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// ExtractEngine.h
#ifndef ZIP7_INC_EXTRACT_ENGINE_H
#define ZIP7_INC_EXTRACT_ENGINE_H
#include "../../UI/Common/LoadCodecs.h"
HRESULT ExtractArchive(CCodecs *codecs, const FString &fileName, const FString &destFolder,
bool showProgress, bool &isCorrupt, UString &errorMessage);
#endif
|