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.

41 lines
1.1 KiB

  1. // ProfExt.idl : IDL source for ProfExt.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ProfExt.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(C02A26BD-5E70-46DA-80A5-221DF57C7E15),
  10. dual,
  11. helpstring("IExtendProfileMigration Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IExtendProfileMigration : IDispatch
  15. {
  16. [id(1), helpstring("method GetRequiredFiles")] HRESULT GetRequiredFiles([out] SAFEARRAY(BSTR) * pArray);
  17. [id(2), helpstring("method GetRegisterableFiles")] HRESULT GetRegisterableFiles([out] SAFEARRAY(BSTR) * pArray);
  18. [id(3), helpstring("method UpdateProfile")] HRESULT UpdateProfile([in] IUnknown * pVarSet);
  19. };
  20. [
  21. uuid(8BE82A99-E318-4CB0-B2C1-03F8D111ABEF),
  22. version(1.0),
  23. helpstring("ProfExt 1.0 Type Library")
  24. ]
  25. library PROFEXTLib
  26. {
  27. importlib("stdole32.tlb");
  28. importlib("stdole2.tlb");
  29. [
  30. uuid(93FAF0AD-9BFC-4A70-BA8B-EC98B43EF5BD),
  31. helpstring("ExtendProfileMigration Class")
  32. ]
  33. coclass ExtendProfileMigration
  34. {
  35. [default] interface IExtendProfileMigration;
  36. };
  37. };