windows-nt/Source/XPSP1/NT/com/ole32/stg/async/idl/intfy.idl

33 lines
636 B
Plaintext
Raw Normal View History

2020-09-26 03:20:57 -05:00
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1995.
//
// File: iprognot.idl
//
// Contents: IProgressNotify
//
// History: 28-Dec-95 SusiA Created
//
//----------------------------------------------------------------------------
[
local,
object,
uuid(a9d758a0-4617-11cf-95fc-00aa00680db4),
pointer_default(unique)
]
interface IProgressNotify: IUnknown
{
import "unknwn.idl";
HRESULT OnProgress (
[in] DWORD dwProgressCurrent,
[in] DWORD dwProgressMaximum,
[in] BOOL fAccurate
);
}