You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
340 B
20 lines
340 B
// IProgress.h
|
|
|
|
#ifndef __IPROGRESS_H
|
|
#define __IPROGRESS_H
|
|
|
|
#include "../Common/MyTypes.h"
|
|
|
|
#include "IDecl.h"
|
|
|
|
#define INTERFACE_IProgress(x) \
|
|
STDMETHOD(SetTotal)(UInt64 total) x; \
|
|
STDMETHOD(SetCompleted)(const UInt64 *completeValue) x; \
|
|
|
|
DECL_INTERFACE(IProgress, 0, 5)
|
|
{
|
|
INTERFACE_IProgress(PURE)
|
|
};
|
|
|
|
#endif
|