Files
nsis-plugin-ns7zip/versions/26.00/CPP/7zip/UI/FileManager/UpdateCallback100.h
T
Simone d074cc7c07 chore: initial commit (extracted from Launchers monorepo)
Plugin: ns7zip v2.0.0
Architectures: x86-ansi, x86-unicode, amd64-unicode
License: LGPL-2.1-or-later
2026-04-29 14:07:51 +02:00

50 lines
1.3 KiB
C++

// UpdateCallback100.h
#ifndef ZIP7_INC_UPDATE_CALLBACK100_H
#define ZIP7_INC_UPDATE_CALLBACK100_H
#include "../../../Common/MyCom.h"
#include "../../IPassword.h"
#include "../Agent/IFolderArchive.h"
#include "../GUI/UpdateCallbackGUI2.h"
#include "ProgressDialog2.h"
class CUpdateCallback100Imp Z7_final:
public IFolderArchiveUpdateCallback,
public IFolderArchiveUpdateCallback2,
public IFolderArchiveUpdateCallback_MoveArc,
public IFolderScanProgress,
public ICryptoGetTextPassword2,
public ICryptoGetTextPassword,
public IArchiveOpenCallback,
public ICompressProgressInfo,
public CUpdateCallbackGUI2,
public CMyUnknownImp
{
Z7_COM_UNKNOWN_IMP_8(
IFolderArchiveUpdateCallback,
IFolderArchiveUpdateCallback2,
IFolderArchiveUpdateCallback_MoveArc,
IFolderScanProgress,
ICryptoGetTextPassword2,
ICryptoGetTextPassword,
IArchiveOpenCallback,
ICompressProgressInfo)
Z7_IFACE_COM7_IMP(IProgress)
Z7_IFACE_COM7_IMP(IFolderArchiveUpdateCallback)
Z7_IFACE_COM7_IMP(IFolderArchiveUpdateCallback2)
Z7_IFACE_COM7_IMP(IFolderArchiveUpdateCallback_MoveArc)
Z7_IFACE_COM7_IMP(IFolderScanProgress)
Z7_IFACE_COM7_IMP(ICryptoGetTextPassword2)
Z7_IFACE_COM7_IMP(ICryptoGetTextPassword)
Z7_IFACE_COM7_IMP(IArchiveOpenCallback)
Z7_IFACE_COM7_IMP(ICompressProgressInfo)
};
#endif