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.

38 lines
839 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2002.
  5. //
  6. // File:
  7. // machnames.idl
  8. //
  9. // Contents:
  10. // Definition of private COM system interface(s) related to local
  11. // machine names.
  12. //
  13. // History:
  14. // JSimmons 02-17-02 Created
  15. //
  16. //--------------------------------------------------------------------------
  17. #ifndef DO_NO_IMPORTS
  18. import "obase.idl";
  19. import "wtypes.idl";
  20. import "objidl.idl";
  21. #endif
  22. [
  23. object,
  24. local,
  25. pointer_default(unique),
  26. uuid(0000015A-0000-0000-C000-000000000046)
  27. ]
  28. interface ILocalMachineNames : IEnumString
  29. {
  30. HRESULT RefreshNames();
  31. }
  32. cpp_quote("")
  33. cpp_quote("EXTERN_C const CLSID CLSID_LocalMachineNames;")
  34. cpp_quote("")