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

//]
