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.

48 lines
947 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1999 - 1999
  6. //
  7. // File: dsplex.idl
  8. //
  9. //--------------------------------------------------------------------------
  10. // dsplex.idl : IDL source for dsplex.dll
  11. //
  12. // This file will be processed by the MIDL tool to
  13. // produce the type library (dsplex.tlb) and marshalling code.
  14. import "oaidl.idl";
  15. import "ocidl.idl";
  16. [
  17. uuid(7D197470-607C-11D1-9FED-00600832DB4A),
  18. helpstring("IDisplEx Interface"),
  19. pointer_default(unique)
  20. ]
  21. interface IDisplEx : IUnknown
  22. {
  23. };
  24. [
  25. uuid(DC86AD82-607B-11D1-9FED-00600832DB4A),
  26. version(1.0),
  27. helpstring("dsplex 1.0 Type Library")
  28. ]
  29. library DSPLEXLib
  30. {
  31. importlib("stdole32.tlb");
  32. importlib("stdole2.tlb");
  33. [
  34. uuid(7D197471-607C-11D1-9FED-00600832DB4A),
  35. helpstring("DisplEx Class")
  36. ]
  37. coclass DisplEx
  38. {
  39. [default] interface IDisplEx;
  40. };
  41. };