Jump to content

FONTPOT

From EDM2
Revision as of 02:55, 3 May 2025 by Martini (talk | contribs) (Created page with "Fontpot structure. == Type == struct == C Declaration Method == typedef struct == Example Code == <PRE> typedef struct _FONTPOT { CELL cell; Size of the data that follows.: FATTRS fAttrs; Font-attribute structure from WinFontDlg.: CHAR szFont[CCHFONTNAME+1]; The font name.: } FONTPOT; typedef FONTPOT *PFONTPOT; </PRE> Category:WPS Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Fontpot structure.

Type

struct

C Declaration Method

typedef struct

Example Code

typedef struct _FONTPOT {
  CELL       cell;                   /* Size of the data that follows. */
  FATTRS     fAttrs;                 /* Font-attribute structure from WinFontDlg. */
  CHAR       szFont[CCHFONTNAME+1];  /* The font name. */
} FONTPOT;

typedef FONTPOT *PFONTPOT;