mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 20:11:38 -06:00
23.01
This commit is contained in:
@@ -1,19 +1,20 @@
|
||||
// IProgress.h
|
||||
|
||||
#ifndef __IPROGRESS_H
|
||||
#define __IPROGRESS_H
|
||||
#ifndef ZIP7_INC_IPROGRESS_H
|
||||
#define ZIP7_INC_IPROGRESS_H
|
||||
|
||||
#include "../Common/MyTypes.h"
|
||||
|
||||
#include "IDecl.h"
|
||||
|
||||
#define INTERFACE_IProgress(x) \
|
||||
STDMETHOD(SetTotal)(UInt64 total) x; \
|
||||
STDMETHOD(SetCompleted)(const UInt64 *completeValue) x; \
|
||||
Z7_PURE_INTERFACES_BEGIN
|
||||
|
||||
DECL_INTERFACE(IProgress, 0, 5)
|
||||
{
|
||||
INTERFACE_IProgress(PURE)
|
||||
};
|
||||
#define Z7_IFACEM_IProgress(x) \
|
||||
x(SetTotal(UInt64 total)) \
|
||||
x(SetCompleted(const UInt64 *completeValue)) \
|
||||
|
||||
Z7_DECL_IFACE_7ZIP(IProgress, 0, 5)
|
||||
{ Z7_IFACE_COM7_PURE(IProgress) };
|
||||
|
||||
Z7_PURE_INTERFACES_END
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user