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.

42 lines
833 B

  1. // msconfig.idl : IDL source for msconfig.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (msconfig.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. #include "olectl.h"
  8. [
  9. object,
  10. uuid(BE122C84-2378-4B35-9E0A-3E5A379D0323),
  11. dual,
  12. helpstring("IMSConfigCtl Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface IMSConfigCtl : IDispatch
  16. {
  17. [id(1), helpstring("method SetParentHWND")] HRESULT SetParentHWND(DWORD_PTR dwHWND);
  18. };
  19. [
  20. uuid(583ED224-D15A-4539-85EB-4E0919937D3D),
  21. version(1.0),
  22. helpstring("msconfig 1.0 Type Library")
  23. ]
  24. library MSCONFIGLib
  25. {
  26. importlib("stdole32.tlb");
  27. importlib("stdole2.tlb");
  28. [
  29. uuid(8575E59C-9376-4954-B562-BF2AC380F65F),
  30. helpstring("MSConfigCtl Class")
  31. ]
  32. coclass MSConfigCtl
  33. {
  34. [default] interface IMSConfigCtl;
  35. };
  36. };