Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

32 lines
596 B

//[ 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 * );
}
//]