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..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
Information returned by the BIDI_Q_CONVERTER_INFO command. | Information returned by the BIDI_Q_CONVERTER_INFO command. | ||
<PRE> | <PRE> | ||
typedef struct _PRTCNVINFO { | typedef struct _PRTCNVINFO { | ||
ULONG ulBaseVersion; | ULONG ulBaseVersion; | ||
ULONG ulpszBaseConverterName; | ULONG ulpszBaseConverterName; | ||
ULONG ulpszBaseDescription; | ULONG ulpszBaseDescription; | ||
ULONG ulExtensionVersion; | ULONG ulExtensionVersion; | ||
ULONG ulpszExtConverterName; | ULONG ulpszExtConverterName; | ||
ULONG ulpszExtDescription; | ULONG ulpszExtDescription; | ||
} PRTCNVINFO; | } PRTCNVINFO; | ||
typedef PRTCNVINFO *PPRTCNVINFO; | typedef PRTCNVINFO *PPRTCNVINFO; | ||
</PRE> | </PRE> | ||
;ulBaseVersion:Version number of the base protocol converter. | |||
;ulpszBaseConverterName:Name of the base protocol converter for this printer. | |||
;ulpszBaseDescription:Descriptive name of the base converter. | |||
;ulExtensionVersion:Version number of the extension protocol converter. | |||
;ulpszExtConverterName:Name of the extension protocol converter. | |||
;ulpszExtDescription:Descriptive name of the extension converter. | |||
[[Category:Data type]] | [[Category:Data type]] |
Latest revision as of 03:37, 3 May 2020
Information returned by the BIDI_Q_CONVERTER_INFO command.
typedef struct _PRTCNVINFO { ULONG ulBaseVersion; ULONG ulpszBaseConverterName; ULONG ulpszBaseDescription; ULONG ulExtensionVersion; ULONG ulpszExtConverterName; ULONG ulpszExtDescription; } PRTCNVINFO; typedef PRTCNVINFO *PPRTCNVINFO;
- ulBaseVersion
- Version number of the base protocol converter.
- ulpszBaseConverterName
- Name of the base protocol converter for this printer.
- ulpszBaseDescription
- Descriptive name of the base converter.
- ulExtensionVersion
- Version number of the extension protocol converter.
- ulpszExtConverterName
- Name of the extension protocol converter.
- ulpszExtDescription
- Descriptive name of the extension converter.