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.

31 lines
596 B

  1. //[ IPerf_itf
  2. //+-------------------------------------------------------------------
  3. //
  4. // Interface: IPerf (ib)
  5. //
  6. // Purpose: Interface for manipulating performance
  7. //
  8. // History: 5-Oct-93 AlexMit Created
  9. //
  10. // Notes:
  11. //
  12. //--------------------------------------------------------------------
  13. [ object,
  14. uuid(91062994-A3E7-101A-B4AC-08002B30612C),
  15. pointer_default(unique) ]
  16. interface IPerf : IUnknown
  17. {
  18. import "unknwn.idl";
  19. HRESULT NullCall();
  20. HRESULT HResultCall();
  21. HRESULT GetAnotherObject( [out] IPerf **another );
  22. HRESULT PassMoniker( IMoniker * );
  23. }
  24. //]
  25.