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.

40 lines
884 B

  1. // faxitg.idl : IDL source for faxitg.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (faxitg.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(70615918-C8B2-11D0-B225-00C04FB6C2F5),
  10. dual,
  11. helpstring("IFaxQueue Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IFaxQueue : IDispatch
  15. {
  16. [propget, id(1), helpstring("property GetNextFax")] HRESULT GetNextFax([out, retval] BSTR *pVal);
  17. [propput, id(2), helpstring("property Connect")] HRESULT Connect([in] BSTR newVal);
  18. };
  19. [
  20. uuid(7061590B-C8B2-11D0-B225-00C04FB6C2F5),
  21. version(1.0),
  22. helpstring("faxitg 1.0 Type Library")
  23. ]
  24. library FAXITGLib
  25. {
  26. importlib("stdole32.tlb");
  27. importlib("stdole2.tlb");
  28. [
  29. uuid(70615919-C8B2-11D0-B225-00C04FB6C2F5),
  30. helpstring("FaxQueue Class")
  31. ]
  32. coclass FaxQueue
  33. {
  34. [default] interface IFaxQueue;
  35. };
  36. };