Jump to content

VIOFONTCELLSIZE: Difference between revisions

From EDM2
Created page with "An array of VIOFONTCELLSIZE structures. ==Example Code== <PRE> typedef struct _VIOFONTCELLSIZE { BYTE xWidth; Width of the VIO character cell.: BYTE yHei..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
An array of VIOFONTCELLSIZE structures.  
An array of VIOFONTCELLSIZE structures.


==Example Code==
<PRE>
<PRE>
typedef struct _VIOFONTCELLSIZE {
typedef struct _VIOFONTCELLSIZE {
Line 11: Line 10:
</PRE>
</PRE>


[[Category:Data type]]
[[Category:PM Data type]]

Latest revision as of 05:51, 21 February 2020

An array of VIOFONTCELLSIZE structures.

typedef struct _VIOFONTCELLSIZE {
  BYTE     xWidth;   /*  Width of the VIO character cell. */
  BYTE     yHeight;  /*  Height of the VIO character cell. */
} VIOFONTCELLSIZE;

typedef VIOFONTCELLSIZE *PVIOFONTCELLSIZE;