Cancelling fax job

  • Thread starter Thread starter Jason Wicks
  • Start date Start date
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
 
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.
 
Back
Top