summaryrefslogtreecommitdiffstats
path: root/private/oleutest/balls/idl/iloop.idl
blob: 007ae090875b8c87aa7687f4bb288c3e31132cdc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//[ 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);
}

//]