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.

51 lines
2.2 KiB

  1. // IISUIObj.idl : IDL source for IISUIObj.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (IISUIObj.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(D9587D16-5071-4C09-B45B-1E294B07C536),
  10. dual,
  11. helpstring("IImportExportConfig Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IImportExportConfig : IDispatch
  15. {
  16. [propget, id(1), helpstring("property MachineName")] HRESULT MachineName([out, retval] BSTR *pVal);
  17. [propput, id(1), helpstring("property MachineName")] HRESULT MachineName([in] BSTR newVal);
  18. [propget, id(2), helpstring("property UserName")] HRESULT UserName([out, retval] BSTR *pVal);
  19. [propput, id(2), helpstring("property UserName")] HRESULT UserName([in] BSTR newVal);
  20. [propput, id(3), helpstring("property UserPassword")] HRESULT UserPassword([in] BSTR newVal);
  21. [id(4), helpstring("method ExportConfigToFile")] HRESULT ExportConfigToFile([in] BSTR FileNameAndPath, [in] BSTR MetabasePath, [in] BSTR Password);
  22. [id(5), helpstring("method ExportConfigToFileUI")] HRESULT ExportConfigToFileUI([in] BSTR MetabasePath);
  23. [id(6), helpstring("method ImportConfigFromFile")] HRESULT ImportConfigFromFile([in] BSTR FileNameAndPath,[in] BSTR SourcePath, [in] BSTR DestinationPath, [in] BSTR Password);
  24. [id(7), helpstring("method ImportConfigFromFileUI")] HRESULT ImportConfigFromFileUI([in] BSTR MetabasePath,[in] BSTR KeyType);
  25. [propget, id(8), helpstring("property ImportFlags")] HRESULT ImportFlags([out, retval] DWORD *pVal);
  26. [propput, id(8), helpstring("property ImportFlags")] HRESULT ImportFlags([in] DWORD newVal);
  27. [propget, id(9), helpstring("property ExportFlags")] HRESULT ExportFlags([out, retval] DWORD *pVal);
  28. [propput, id(9), helpstring("property ExportFlags")] HRESULT ExportFlags([in] DWORD newVal);
  29. };
  30. [
  31. uuid(656D69F4-1B5F-4138-B997-F8656BDC65D4),
  32. version(1.0),
  33. helpstring("IISUIObj 1.0 Type Library")
  34. ]
  35. library IISUIOBJLib
  36. {
  37. importlib("stdole32.tlb");
  38. importlib("stdole2.tlb");
  39. [
  40. uuid(7348E6F0-3ACA-4F34-849A-967958F1D7E8),
  41. helpstring("ImportExportConfig Class")
  42. ]
  43. coclass ImportExportConfig
  44. {
  45. [default] interface IImportExportConfig;
  46. };
  47. };