Jump to content

PRTJOB: 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 _PRTJOB { ULONG interpreterID; /* Identifier of the interp..."
 
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 _PRTJOB {
typedef struct _PRTJOB {
   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. */
} PRTJOB;
} PRTJOB;



Latest revision as of 09:23, 5 April 2025

Job structure used with the BIDI_Q_JOBID and BIDI_ENDJOB commands.

typedef struct _PRTJOB {
  ULONG     interpreterID;   /* Identifier of the interpreter that is processing this job. */
  ULONG     ulPrinterJobID;  /* Printer job identifier. */
} PRTJOB;

typedef PRTJOB *PPRTJOB;