1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/other-licenses/7zstub/src/7zip/IProgress.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +// Interface/IProgress.h 1.5 + 1.6 +#ifndef __IPROGRESS_H 1.7 +#define __IPROGRESS_H 1.8 + 1.9 +#include "../Common/MyUnknown.h" 1.10 +#include "../Common/Types.h" 1.11 + 1.12 +// {23170F69-40C1-278A-0000-000000050000} 1.13 +DEFINE_GUID(IID_IProgress, 1.14 +0x23170F69, 0x40C1, 0x278A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00); 1.15 +MIDL_INTERFACE("23170F69-40C1-278A-0000-000000050000") 1.16 +IProgress: public IUnknown 1.17 +{ 1.18 + STDMETHOD(SetTotal)(UInt64 total) PURE; 1.19 + STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE; 1.20 +}; 1.21 + 1.22 +/* 1.23 +// {23170F69-40C1-278A-0000-000000050002} 1.24 +DEFINE_GUID(IID_IProgress2, 1.25 +0x23170F69, 0x40C1, 0x278A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02); 1.26 +MIDL_INTERFACE("23170F69-40C1-278A-0000-000000050002") 1.27 +IProgress2: public IUnknown 1.28 +{ 1.29 +public: 1.30 + STDMETHOD(SetTotal)(const UInt64 *total) PURE; 1.31 + STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE; 1.32 +}; 1.33 +*/ 1.34 + 1.35 +#endif