michael@0: // Interface/IProgress.h michael@0: michael@0: #ifndef __IPROGRESS_H michael@0: #define __IPROGRESS_H michael@0: michael@0: #include "../Common/MyUnknown.h" michael@0: #include "../Common/Types.h" michael@0: michael@0: // {23170F69-40C1-278A-0000-000000050000} michael@0: DEFINE_GUID(IID_IProgress, michael@0: 0x23170F69, 0x40C1, 0x278A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00); michael@0: MIDL_INTERFACE("23170F69-40C1-278A-0000-000000050000") michael@0: IProgress: public IUnknown michael@0: { michael@0: STDMETHOD(SetTotal)(UInt64 total) PURE; michael@0: STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE; michael@0: }; michael@0: michael@0: /* michael@0: // {23170F69-40C1-278A-0000-000000050002} michael@0: DEFINE_GUID(IID_IProgress2, michael@0: 0x23170F69, 0x40C1, 0x278A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02); michael@0: MIDL_INTERFACE("23170F69-40C1-278A-0000-000000050002") michael@0: IProgress2: public IUnknown michael@0: { michael@0: public: michael@0: STDMETHOD(SetTotal)(const UInt64 *total) PURE; michael@0: STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE; michael@0: }; michael@0: */ michael@0: michael@0: #endif