Leaked source code of windows server 2003
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.
 
 
 
 
 
 

29 lines
585 B

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