mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 04:07:08 -06:00
4.44 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
804edc5756
commit
d9666cf046
24
CPP/7zip/UI/Agent/UpdateCallbackAgent.h
Executable file
24
CPP/7zip/UI/Agent/UpdateCallbackAgent.h
Executable file
@@ -0,0 +1,24 @@
|
||||
// UpdateCallbackAgent.h
|
||||
|
||||
#ifndef __UPDATECALLBACKAGENT_H
|
||||
#define __UPDATECALLBACKAGENT_H
|
||||
|
||||
#include "../Common/UpdateCallback.h"
|
||||
#include "IFolderArchive.h"
|
||||
|
||||
class CUpdateCallbackAgent: public IUpdateCallbackUI
|
||||
{
|
||||
virtual HRESULT SetTotal(UINT64 size);
|
||||
virtual HRESULT SetCompleted(const UINT64 *completeValue);
|
||||
virtual HRESULT CheckBreak();
|
||||
virtual HRESULT Finilize();
|
||||
virtual HRESULT GetStream(const wchar_t *name, bool isAnti);
|
||||
virtual HRESULT OpenFileError(const wchar_t *name, DWORD systemError);
|
||||
virtual HRESULT SetOperationResult(INT32 operationResult);
|
||||
virtual HRESULT CryptoGetTextPassword2(INT32 *passwordIsDefined, BSTR *password);
|
||||
CMyComPtr<ICryptoGetTextPassword2> _cryptoGetTextPassword;
|
||||
public:
|
||||
CMyComPtr<IFolderArchiveUpdateCallback> Callback;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user