1// ExtractEngine.h 2 3#ifndef ZIP7_INC_EXTRACT_ENGINE_H 4#define ZIP7_INC_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