Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 // Interface/IProgress.h
3 #ifndef __IPROGRESS_H
4 #define __IPROGRESS_H
6 #include "../Common/MyUnknown.h"
7 #include "../Common/Types.h"
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 };
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 */
32 #endif