Sandboxie/SandboxiePlus/MiscHelpers/Archive/7z/CPP/7zip/IProgress.h

21 lines
370 B
C
Raw Normal View History

2023-09-14 16:51:54 +01:00
// IProgress.h
2022-11-12 09:45:35 +00:00
2023-09-14 16:51:54 +01:00
#ifndef ZIP7_INC_IPROGRESS_H
#define ZIP7_INC_IPROGRESS_H
2022-11-12 09:45:35 +00:00
2023-09-14 16:51:54 +01:00
#include "../Common/MyTypes.h"
2022-11-12 09:45:35 +00:00
#include "IDecl.h"
2023-09-14 16:51:54 +01:00
Z7_PURE_INTERFACES_BEGIN
2022-11-12 09:45:35 +00:00
2023-09-14 16:51:54 +01:00
#define Z7_IFACEM_IProgress(x) \
x(SetTotal(UInt64 total)) \
x(SetCompleted(const UInt64 *completeValue)) \
2022-11-12 09:45:35 +00:00
2023-09-14 16:51:54 +01:00
Z7_DECL_IFACE_7ZIP(IProgress, 0, 5)
{ Z7_IFACE_COM7_PURE(IProgress) };
2022-11-12 09:45:35 +00:00
2023-09-14 16:51:54 +01:00
Z7_PURE_INTERFACES_END
2022-11-12 09:45:35 +00:00
#endif