Leaked source code of windows server 2003
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.

43 lines
1.3 KiB

  1. // FaxControl.idl : IDL source for FaxControl.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (FaxControl.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(32B56515-D48B-4DD9-87AC-9216F6BEAA6F),
  10. oleautomation,
  11. dual,
  12. helpstring("IFaxControl Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface IFaxControl : IDispatch
  16. {
  17. [propget, id(1), helpstring("property IsFaxServiceInstalled")] HRESULT IsFaxServiceInstalled([out, retval] VARIANT_BOOL *pbVal);
  18. [propget, id(2), helpstring("property IsLocalFaxPrinterInstalled")] HRESULT IsLocalFaxPrinterInstalled([out, retval] VARIANT_BOOL *pbVal);
  19. [id(3), helpstring("method InstallFaxService")] HRESULT InstallFaxService();
  20. [id(4), helpstring("method InstallLocalFaxPrinter")] HRESULT InstallLocalFaxPrinter();
  21. };
  22. [
  23. uuid(E4DE3030-0142-4ACA-BA48-8613B56A2555),
  24. version(1.0),
  25. helpstring("FaxControl 1.0 Type Library")
  26. ]
  27. library FAXCONTROLLib
  28. {
  29. importlib("stdole32.tlb");
  30. importlib("stdole2.tlb");
  31. [
  32. uuid(98F63271-6C09-48B3-A571-990155932D0B),
  33. helpstring("FaxControl Class")
  34. ]
  35. coclass FaxControl
  36. {
  37. [default] interface IFaxControl;
  38. };
  39. };