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
906 B

  1. // fullsc.idl : IDL source for fullsc.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (fullsc.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. #include "olectl.h"
  8. [
  9. object,
  10. uuid(E0944507-942B-4FA7-B566-4A8094A88604),
  11. dual,
  12. helpstring("IFullScCtl Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface IFullScCtl : IDispatch
  16. {
  17. [propget, id(1), helpstring("property FullScreen")] HRESULT FullScreen([out, retval] VARIANT_BOOL *pVal);
  18. [propput, id(1), helpstring("property FullScreen")] HRESULT FullScreen([in] VARIANT_BOOL newVal);
  19. };
  20. [
  21. uuid(B0C8DC07-32AE-450A-8A2F-9A4C0D09D0F6),
  22. version(1.0),
  23. helpstring("fullsc 1.0 Type Library")
  24. ]
  25. library FULLSCLib
  26. {
  27. importlib("stdole2.tlb");
  28. [
  29. uuid(39FC3F46-F428-44D2-829B-74CD1DA76F44),
  30. helpstring("FullScCtl Class")
  31. ]
  32. coclass FullScCtl
  33. {
  34. [default] interface IFullScCtl;
  35. };
  36. };