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.

34 lines
797 B

  1. //[ IAsync_itf
  2. //+-------------------------------------------------------------------
  3. //
  4. // Interface: ITest (ib)
  5. //
  6. // Purpose: Interface for manipulating performance
  7. //
  8. // History: 5-Oct-93 AlexMit Created
  9. //
  10. // Notes:
  11. //
  12. //--------------------------------------------------------------------
  13. import "unknwn.idl";
  14. [
  15. object,
  16. uuid(70000000-76d7-11Cf-9af1-0020af6e72f4),
  17. async_uuid(70000001-76d7-11Cf-9af1-0020af6e72f4),
  18. pointer_default(unique)
  19. ]
  20. interface IAsync : IUnknown
  21. {
  22. import "itest.idl";
  23. typedef [string] wchar_t *STRING;
  24. HRESULT preimpersonate( [in] BOOL fOn );
  25. HRESULT secure ( [in] SAptId id,
  26. [in] DWORD test,
  27. [in, unique] STRING princ_name );
  28. }
  29. //]