Files
easy7zip/CPP/7zip/UI/FileManager/UpdateCallback100.h
Igor Pavlov a36c48cece 23.01
2023-12-22 17:17:05 +00:00

47 lines
1.2 KiB
C++
Executable File

// 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 IFolderScanProgress,
public ICryptoGetTextPassword2,
public ICryptoGetTextPassword,
public IArchiveOpenCallback,
public ICompressProgressInfo,
public CUpdateCallbackGUI2,
public CMyUnknownImp
{
Z7_COM_UNKNOWN_IMP_7(
IFolderArchiveUpdateCallback,
IFolderArchiveUpdateCallback2,
IFolderScanProgress,
ICryptoGetTextPassword2,
ICryptoGetTextPassword,
IArchiveOpenCallback,
ICompressProgressInfo)
Z7_IFACE_COM7_IMP(IProgress)
Z7_IFACE_COM7_IMP(IFolderArchiveUpdateCallback)
Z7_IFACE_COM7_IMP(IFolderArchiveUpdateCallback2)
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