|
1 // Interface/IProgress.h |
|
2 |
|
3 #ifndef __IPROGRESS_H |
|
4 #define __IPROGRESS_H |
|
5 |
|
6 #include "../Common/MyUnknown.h" |
|
7 #include "../Common/Types.h" |
|
8 |
|
9 // {23170F69-40C1-278A-0000-000000050000} |
|
10 DEFINE_GUID(IID_IProgress, |
|
11 0x23170F69, 0x40C1, 0x278A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00); |
|
12 MIDL_INTERFACE("23170F69-40C1-278A-0000-000000050000") |
|
13 IProgress: public IUnknown |
|
14 { |
|
15 STDMETHOD(SetTotal)(UInt64 total) PURE; |
|
16 STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE; |
|
17 }; |
|
18 |
|
19 /* |
|
20 // {23170F69-40C1-278A-0000-000000050002} |
|
21 DEFINE_GUID(IID_IProgress2, |
|
22 0x23170F69, 0x40C1, 0x278A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02); |
|
23 MIDL_INTERFACE("23170F69-40C1-278A-0000-000000050002") |
|
24 IProgress2: public IUnknown |
|
25 { |
|
26 public: |
|
27 STDMETHOD(SetTotal)(const UInt64 *total) PURE; |
|
28 STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE; |
|
29 }; |
|
30 */ |
|
31 |
|
32 #endif |