This commit is contained in:
Igor Pavlov
2005-05-30 00:00:00 +00:00
committed by Kornel Lesiński
parent 8c1b5c7b7e
commit 3c510ba80b
926 changed files with 40559 additions and 23519 deletions

View File

@@ -1,10 +1,11 @@
// Interface/IProgress.h
// #pragma once
#ifndef __IPROGRESS_H
#define __IPROGRESS_H
#include "../Common/MyUnknown.h"
#include "../Common/Types.h"
// {23170F69-40C1-278A-0000-000000050000}
DEFINE_GUID(IID_IProgress,
0x23170F69, 0x40C1, 0x278A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00);
@@ -12,8 +13,8 @@ MIDL_INTERFACE("23170F69-40C1-278A-0000-000000050000")
IProgress: public IUnknown
{
public:
STDMETHOD(SetTotal)(UINT64 total) PURE;
STDMETHOD(SetCompleted)(const UINT64 *completeValue) PURE;
STDMETHOD(SetTotal)(UInt64 total) PURE;
STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE;
};
/*
@@ -24,8 +25,8 @@ MIDL_INTERFACE("23170F69-40C1-278A-0000-000000050002")
IProgress2: public IUnknown
{
public:
STDMETHOD(SetTotal)(const UINT64 *total) PURE;
STDMETHOD(SetCompleted)(const UINT64 *completeValue) PURE;
STDMETHOD(SetTotal)(const UInt64 *total) PURE;
STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE;
};
*/