Jump to content

PRTCONTROLJOB: Difference between revisions

From EDM2
Created page with "Job structure used with the BIDI_Q_JOBID and BIDI_ENDJOB commands. ==Example Code== <PRE> typedef struct _PRTCONTROLJOB { ULONG interpreterID; /* Identifier of the ..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
Job structure used with the BIDI_Q_JOBID and BIDI_ENDJOB commands.  
Job structure used with the BIDI_Q_JOBID and BIDI_ENDJOB commands.


==Example Code==
<PRE>
<PRE>
typedef struct _PRTCONTROLJOB {
typedef struct _PRTCONTROLJOB {
   ULONG    interpreterID;  /* Identifier of the interpreter that is processing this job. */
   ULONG    interpreterID;  /* Identifier of the interpreter that is processing this job. */
   ULONG    ulPrinterJobID;  /* Printer job identifier. */
   ULONG    ulPrinterJobID;  /* Printer job identifier. */
   ULONG    ulSpoolerJobID;  /* Spooler job identifier. */
   ULONG    ulSpoolerJobID;  /* Spooler job identifier. */
} PRTCONTROLJOB;
} PRTCONTROLJOB;



Latest revision as of 17:59, 13 February 2020

Job structure used with the BIDI_Q_JOBID and BIDI_ENDJOB commands.

typedef struct _PRTCONTROLJOB {
  ULONG     interpreterID;   /* Identifier of the interpreter that is processing this job. */
  ULONG     ulPrinterJobID;  /* Printer job identifier. */
  ULONG     ulSpoolerJobID;  /* Spooler job identifier. */
} PRTCONTROLJOB;

typedef PRTCONTROLJOB *PPRTCONTROLJOB;