Jump to content

FOCAFONT: Difference between revisions

From EDM2
Created page with "FOCAFONT data structure. ==Type== typedef struct _FOCAFONT { FONTSIGNATURE fsSignature; FOCAFONT data structure.: FOCA..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
FOCAFONT data structure.  
FOCAFONT data structure.
 
==Type==
==Type==
  typedef struct _FOCAFONT {
  typedef struct _FOCAFONT {
   FONTSIGNATURE                         fsSignature;                     /* FOCAFONT data structure. */
   FONTSIGNATURE                     fsSignature;   /* FOCAFONT data structure. */
   FOCAMETRICS                           fmMetrics;                       /* Font metrics structure. */
   FOCAMETRICS                       fmMetrics;     /* Font metrics structure. */
   FONTDEFINITIONHEADER                 fdDefinitions;                   /* Defines format of character definition records. */
   FONTDEFINITIONHEADER               fdDefinitions; /* Defines format of character definition records. */
   TYPE1CELL, TYPE2CELL or TYPE3CELL     font_cell [ ];  /*  Array of Type 1, 2, or 3 cells. */
   TYPE1CELL, TYPE2CELL or TYPE3CELL font_cell [];  /*  Array of Type 1, 2, or 3 cells. */
  } FOCAFONT;
  } FOCAFONT;
==C Declaration Method==
==C Declaration Method==
  typedef FOCAFONT *PFOCAFONT;
  typedef FOCAFONT *PFOCAFONT;
[[Category:Data type]]
[[Category:Data type]]

Latest revision as of 20:36, 13 September 2021

FOCAFONT data structure.

Type

typedef struct _FOCAFONT {
 FONTSIGNATURE                      fsSignature;   /* FOCAFONT data structure. */
 FOCAMETRICS                        fmMetrics;     /* Font metrics structure. */
 FONTDEFINITIONHEADER               fdDefinitions; /* Defines format of character definition records. */
 TYPE1CELL, TYPE2CELL or TYPE3CELL  font_cell [];  /*  Array of Type 1, 2, or 3 cells. */
} FOCAFONT;

C Declaration Method

typedef FOCAFONT *PFOCAFONT;