Source code of Windows XP (NT5)
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
556 B

  1. //[ ILoop_itf
  2. //+-------------------------------------------------------------------
  3. //
  4. // Interface: ILoop (ib)
  5. //
  6. // Purpose: Interface for testing Rpc Looping
  7. //
  8. // History: 23-Nov-92 Rickhi Created
  9. //
  10. // Notes:
  11. //
  12. //--------------------------------------------------------------------
  13. [ object,
  14. uuid(00000136-0001-0008-C000-000000000046),
  15. pointer_default(unique) ]
  16. interface ILoop : IUnknown
  17. {
  18. import "unknwn.idl";
  19. HRESULT Init([in] ILoop *pRemoteLoop);
  20. HRESULT Uninit(void);
  21. HRESULT Loop([in] ULONG ulLoopCount);
  22. }
  23. //]