FONTPOT: Difference between revisions
Appearance
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" |
(No difference)
|
Latest revision as of 02:55, 3 May 2025
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;