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

30 lines
556 B
Plaintext

//[ ILoop_itf
//+-------------------------------------------------------------------
//
// Interface: ILoop (ib)
//
// Purpose: Interface for testing Rpc Looping
//
// History: 23-Nov-92 Rickhi Created
//
// Notes:
//
//--------------------------------------------------------------------
[ object,
uuid(00000136-0001-0008-C000-000000000046),
pointer_default(unique) ]
interface ILoop : IUnknown
{
import "unknwn.idl";
HRESULT Init([in] ILoop *pRemoteLoop);
HRESULT Uninit(void);
HRESULT Loop([in] ULONG ulLoopCount);
}
//]