PRTCNVINFO: Difference between revisions
Appearance
Created page with "Information returned by the BIDI_Q_CONVERTER_INFO command. ==Example Code== <PRE> typedef struct _PRTCNVINFO { ULONG ulBaseVersion; /* Version number of the..." |
(No difference)
|
Revision as of 17:38, 8 February 2020
Information returned by the BIDI_Q_CONVERTER_INFO command.
Example Code
typedef struct _PRTCNVINFO {
ULONG ulBaseVersion; /* Version number of the base protocol converter. */
ULONG ulpszBaseConverterName; /* Name of the base protocol converter for this printer. */
ULONG ulpszBaseDescription; /* Descriptive name of the base converter. */
ULONG ulExtensionVersion; /* Version number of the extension protocol converter. */
ULONG ulpszExtConverterName; /* Name of the extension protocol converter. */
ULONG ulpszExtDescription; /* Descriptive name of the extension converter. */
} PRTCNVINFO;
typedef PRTCNVINFO *PPRTCNVINFO;