Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I send a fax with my Qt application?

Tags:

c++

windows

api

fax

I have a Qt application which needs to be able to send faxes. I'm wondering if there are any fax libraries I can make use of. I haven't been able to find an obvious solution, so I would appreciate your help.

The application has to run on windows xp / windows 7.

If I am unclear/you need more information, please let me know.

EDIT

There will be a fax machine. I'm not sure how the fax drivers work, but the application should support every fax machine.

like image 588
PTBG Avatar asked Jun 08 '12 16:06

PTBG


1 Answers

Windows has a Fax Service Extended COM API

Complete with code samples.

Configuration http://msdn.microsoft.com/en-us/library/windows/desktop/ms692969(v=vs.85).aspx

Sending http://msdn.microsoft.com/en-us/library/windows/desktop/ms693482(v=vs.85).aspx

like image 169
8bitwide Avatar answered Oct 05 '22 19:10

8bitwide