Jump to content

PRTSTARTJOB

From EDM2
Revision as of 18:49, 8 February 2020 by Martini (talk | contribs) (Created page with "Information regarding the job about to be sent to the printer. This information is passed to the BIDI_STARTJOB command. ==Example Code== <PRE> typedef struct _PRTSTARTJOB {...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Information regarding the job about to be sent to the printer. This information is passed to the BIDI_STARTJOB command.

Example Code


typedef struct _PRTSTARTJOB {
  ULONG     ulSpoolerJobID;   /*  Spooler job identifier. */
  ULONG     ulInterpreterID;  /*  Interpreter identifier. */
  ULONG     ulStartPage;      /*  Page in job to begin printing. */
  ULONG     ulEndPage;        /*  Page in job to stop printing. */
} PRTSTARTJOB;

typedef PRTSTARTJOB *PPRTSTARTJOB;