Jump to content

PRTCNVINFO: Difference between revisions

From EDM2
Created page with "Information returned by the BIDI_Q_CONVERTER_INFO command. ==Example Code== <PRE> typedef struct _PRTCNVINFO { ULONG ulBaseVersion; /* Version number of the..."
 
Ak120 (talk | contribs)
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.  


==Example Code==
<PRE>
<PRE>
typedef struct _PRTCNVINFO {
typedef struct _PRTCNVINFO {
   ULONG    ulBaseVersion;           /*  Version number of the base protocol converter. */
   ULONG    ulBaseVersion;
   ULONG    ulpszBaseConverterName; /*  Name of the base protocol converter for this printer. */
   ULONG    ulpszBaseConverterName;
   ULONG    ulpszBaseDescription;   /*  Descriptive name of the base converter. */
   ULONG    ulpszBaseDescription;
   ULONG    ulExtensionVersion;     /*  Version number of the extension protocol converter. */
   ULONG    ulExtensionVersion;
   ULONG    ulpszExtConverterName;   /*  Name of the extension protocol converter. */
   ULONG    ulpszExtConverterName;
   ULONG    ulpszExtDescription;     /*  Descriptive name of the extension converter. */
   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.