PRDINFO3: Difference between revisions
Appearance
Created page with "Print device information structure (level 3). == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _PRDINFO3 { PSZ pszPrinterName; →Print device name.: PSZ pszUserName; →User who submitted job.: PSZ pszLogAddr; →Logical address (for example LPT1).: USHORT uJobId; →Identity of current job.: USHORT fsStatus; →Print destination status.: PSZ..." |
(No difference)
|
Latest revision as of 18:21, 25 April 2025
Print device information structure (level 3).
Type
struct
C Declaration Method
typedef
Example Code
typedef struct _PRDINFO3 {
PSZ pszPrinterName; /* Print device name. */
PSZ pszUserName; /* User who submitted job. */
PSZ pszLogAddr; /* Logical address (for example LPT1). */
USHORT uJobId; /* Identity of current job. */
USHORT fsStatus; /* Print destination status. */
PSZ pszStatus; /* Print device comment while printing. */
PSZ pszComment; /* Print device description. */
PSZ pszDrivers; /* Drivers supported by print device. */
USHORT time; /* Time job has been printing (minutes) */
USHORT usTimeOut; /* Device timeout (seconds) */
} PRDINFO3;
typedef PRDINFO3 * PPRDINFO3 ;