Jump to content

PRINTERINFO

From EDM2
Revision as of 19:23, 25 April 2025 by Martini (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 ;