00001
00002
00003
00004
00005 #ifndef __IPROGRESS_H
00006 #define __IPROGRESS_H
00007
00008 #include "MyUnknown.h"
00009 #include "Types.h"
00010
00011 DEFINE_GUID(IID_IProgress,
00012 0x23170F69, 0x40C1, 0x278A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00);
00013 MIDL_INTERFACE("23170F69-40C1-278A-0000-000000050000")
00014 IProgress: public IUnknown
00015 {
00016 STDMETHOD(SetTotal)(UInt64 total) PURE;
00017 STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE;
00018 };
00019
00020 #endif