4.44 beta

This commit is contained in:
Igor Pavlov
2007-01-20 00:00:00 +00:00
committed by Kornel Lesiński
parent 804edc5756
commit d9666cf046
1331 changed files with 10535 additions and 13791 deletions

View File

@@ -0,0 +1,45 @@
// UpdateCallback.h
#ifndef __UPDATECALLBACK100_H
#define __UPDATECALLBACK100_H
#include "Common/String.h"
#include "Common/MyCom.h"
#include "../Agent/IFolderArchive.h"
#include "ProgressBox.h"
class CUpdateCallback100Imp:
public IFolderArchiveUpdateCallback,
public CMyUnknownImp
{
public:
MY_UNKNOWN_IMP
// IProfress
STDMETHOD(SetTotal)(UINT64 aSize);
STDMETHOD(SetCompleted)(const UINT64 *aCompleteValue);
// IUpdateCallBack
STDMETHOD(CompressOperation)(const wchar_t *aName);
STDMETHOD(DeleteOperation)(const wchar_t *aName);
STDMETHOD(OperationResult)(INT32 aOperationResult);
STDMETHOD(UpdateErrorMessage)(const wchar_t *message);
private:
CMyComPtr<IInFolderArchive> m_ArchiveHandler;
CProgressBox *m_ProgressBox;
public:
void Init(IInFolderArchive *anArchiveHandler,
CProgressBox *aProgressBox)
{
m_ArchiveHandler = anArchiveHandler;
m_ProgressBox = aProgressBox;
}
};
#endif