mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 06:07:05 -06:00
4.20
This commit is contained in:
committed by
Kornel Lesiński
parent
8c1b5c7b7e
commit
3c510ba80b
@@ -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;
|
||||
};
|
||||
*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user