PRINTERINFO: Difference between revisions
Appearance
Created page with "Print destination information structure. This structure is used at information level 0. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _PRINTERINFO { ULONG flType; →Type of printer.: PSZ pszComputerName; →Computer name.: PSZ pszPrintDestinationName; →Name of Print Destination.: PSZ pszDescription; →Description of print destination.: PSZ..." |
(No difference)
|
Latest revision as of 19:23, 25 April 2025
Print destination information structure.
This structure is used at information level 0.
Type
struct
C Declaration Method
typedef
Example Code
typedef struct _PRINTERINFO { ULONG flType; /* Type of printer. */ PSZ pszComputerName; /* Computer name. */ PSZ pszPrintDestinationName; /* Name of Print Destination. */ PSZ pszDescription; /* Description of print destination. */ PSZ pszLocalName; /* Local name of remote print destination. */ } PRINTERINFO; typedef PRINTERINFO * PPRINTERINFO ;