Update to 7-Zip Version 21.02

This commit is contained in:
Tino Reichardt
2021-05-13 16:39:14 +02:00
parent 3724ecfedc
commit 48fa49f76c
620 changed files with 35032 additions and 10925 deletions

View File

@@ -3,7 +3,25 @@
#ifndef __FILE_FOLDER_PLUGIN_OPEN_H
#define __FILE_FOLDER_PLUGIN_OPEN_H
HRESULT OpenFileFolderPlugin(IInStream *inStream, const FString &path, const UString &arcFormat,
HMODULE *module, IFolderFolder **resultFolder, HWND parentWindow, bool &encrypted, UString &password);
#include "../../../Windows/DLL.h"
struct CFfpOpen
{
CLASS_NO_COPY(CFfpOpen)
public:
// out:
bool Encrypted;
UString Password;
NWindows::NDLL::CLibrary Library;
CMyComPtr<IFolderFolder> Folder;
UString ErrorMessage;
CFfpOpen(): Encrypted (false) {}
HRESULT OpenFileFolderPlugin(IInStream *inStream,
const FString &path, const UString &arcFormat, HWND parentWindow);
};
#endif