blob: 295d77b9957ba3904c8f0528f55862b809d5af98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// ExtractEngine.h
#ifndef __EXTRACT_ENGINE_H
#define __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
|