mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 00:07:00 -06:00
Update to 7-Zip Version 21.02
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user