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