Cancelling fax job

J

Jason Wicks

Please help!
I want to be able to cancel a print job using the SetStatus method of the
FaxJob object but I am unable to find what the JC_DELETE constant
declaration is.
Can anyone tell me what the declaration for JC_DELETE is ?

Thanks in advance

Jason
 
R

Raghavendra R [MSFT]

Why don't you use JC_DELETE itself by including winfax.h that gets shipped
with Windows SDK? Anyway this is copy/pasted from winfax.h file on my
Windows Server 2003 computer for you (you should check what's present in
your winfax.h file under the SDK directory and use that instead)

typedef enum
{
JC_UNKNOWN = 0,
JC_DELETE,
JC_PAUSE,
JC_RESUME
} FAX_ENUM_JOB_COMMANDS;

--
Raghavendra R
Microsoft Printing, Imaging and Fax Team
This posting is provided "AS IS" with no warranties, and confers no rights.
Please do not send email directly to this alias. This alias is for newsgroup
purposes only.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top