windows-nt/Source/XPSP1/NT/com/oleutest/balls/idl/iloop.idl

30 lines
556 B
Plaintext
Raw Normal View History

2020-09-26 03:20:57 -05:00
//[ 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);
}
//]