windows-nt/Source/XPSP1/NT/com/oleutest/perf/idl/iperf.idl
2020-09-26 16:20:57 +08:00

32 lines
596 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//[ IPerf_itf
//+-------------------------------------------------------------------
//
// Interface: IPerf (ib)
//
// Purpose: Interface for manipulating performance
//
// History: 5-Oct-93 AlexMit Created
//
// Notes:
//
//--------------------------------------------------------------------
[ object,
uuid(91062994-A3E7-101A-B4AC-08002B30612C),
pointer_default(unique) ]
interface IPerf : IUnknown
{
import "unknwn.idl";
HRESULT NullCall();
HRESULT HResultCall();
HRESULT GetAnotherObject( [out] IPerf **another );
HRESULT PassMoniker( IMoniker * );
}
//]