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.

45 lines
897 B

  1. // mslablti.idl : IDL source for mslablti.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (mslablti.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(466D66F9-9616-11D2-9342-0000F875AE17),
  10. helpstring("IMarshalableTI Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface IMarshalableTI : IUnknown
  14. {
  15. [helpstring("method Create")]
  16. HRESULT Create(
  17. [in] REFIID clsid,
  18. [in] REFIID iidLib,
  19. [in] LCID lcid,
  20. [in] WORD dwMajorVer,
  21. [in] WORD dwMinorVer
  22. );
  23. };
  24. [
  25. uuid(466D66ED-9616-11D2-9342-0000F875AE17),
  26. version(1.0),
  27. helpstring("mslablti 1.0 Type Library")
  28. ]
  29. library MSLABLTILib
  30. {
  31. importlib("stdole2.tlb");
  32. [
  33. uuid(466D66FA-9616-11D2-9342-0000F875AE17),
  34. helpstring("MarshalableTI Class")
  35. ]
  36. coclass MarshalableTI
  37. {
  38. [default] interface IMarshalableTI;
  39. };
  40. };