PRQINFO6: Difference between revisions
Appearance
Created page with "Print-queue information structure. This structure is used at information level 6. ==Example Code== <PRE> typedef struct _PRQINFO6 { PSZ pszName; ..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
Print-queue information structure. | Print-queue information structure. | ||
This structure is used at information level 6. | This structure is used at information level 6. | ||
<PRE> | <PRE> | ||
typedef struct _PRQINFO6 { | typedef struct _PRQINFO6 { | ||
PSZ pszName; | PSZ pszName; /* Queue name. */ | ||
USHORT uPriority; | USHORT uPriority; /* Queue priority. */ | ||
USHORT uStartTime; | USHORT uStartTime; /* Minutes after midnight when queue becomes active. */ | ||
USHORT uUntilTime; | USHORT uUntilTime; /* Minutes after midnight. when queue ceases to be active. */ | ||
USHORT fsType; | USHORT fsType; /* Queue type. */ | ||
PSZ pszSepFile; | PSZ pszSepFile; /* Separator-page file. */ | ||
PSZ pszPrProc; | PSZ pszPrProc; /* Default queue-processor. */ | ||
PSZ pszParms; | PSZ pszParms; /* Queue parameters. */ | ||
PSZ pszComment; | PSZ pszComment; /* Queue description. */ | ||
USHORT fsStatus; | USHORT fsStatus; /* Queue status. */ | ||
USHORT cJobs; | USHORT cJobs; /* Number of jobs in queue. */ | ||
PSZ pszPrinters; | PSZ pszPrinters; /* Print devices connected to queue. */ | ||
PSZ pszDriverName; | PSZ pszDriverName; /* Default device driver. */ | ||
PDRIVDATA pDriverData; | PDRIVDATA pDriverData; /* Default queue job properties. */ | ||
PSZ pszRemoteComputerName; | PSZ pszRemoteComputerName; /* Remote computer name. */ | ||
PSZ pszRemoteQueueName; | PSZ pszRemoteQueueName; /* Remote queue name. */ | ||
} PRQINFO6; | } PRQINFO6; | ||
typedef PRQINFO6 *PPRQINFO6; | typedef PRQINFO6 *PPRQINFO6; | ||
</PRE> | </PRE> | ||
[[Category:Data type]] | [[Category:PM Data type]] |
Latest revision as of 12:18, 21 February 2020
Print-queue information structure.
This structure is used at information level 6.
typedef struct _PRQINFO6 { PSZ pszName; /* Queue name. */ USHORT uPriority; /* Queue priority. */ USHORT uStartTime; /* Minutes after midnight when queue becomes active. */ USHORT uUntilTime; /* Minutes after midnight. when queue ceases to be active. */ USHORT fsType; /* Queue type. */ PSZ pszSepFile; /* Separator-page file. */ PSZ pszPrProc; /* Default queue-processor. */ PSZ pszParms; /* Queue parameters. */ PSZ pszComment; /* Queue description. */ USHORT fsStatus; /* Queue status. */ USHORT cJobs; /* Number of jobs in queue. */ PSZ pszPrinters; /* Print devices connected to queue. */ PSZ pszDriverName; /* Default device driver. */ PDRIVDATA pDriverData; /* Default queue job properties. */ PSZ pszRemoteComputerName; /* Remote computer name. */ PSZ pszRemoteQueueName; /* Remote queue name. */ } PRQINFO6; typedef PRQINFO6 *PPRQINFO6;