SIZEF: Difference between revisions
Appearance
Created page with "Size structure (FIXED values). ==Example Code== <PRE> typedef struct _SIZEF { FIXED cx; →Width.: FIXED cy; →Height.: } SIZEF; typedef SIZEF *PSIZEF; ..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
Size structure (FIXED values). | Size structure (FIXED values). | ||
typedef SIZEF *PSIZEF; | typedef struct _SIZEF { | ||
[[FIXED]] cx; /* Width. */ | |||
FIXED cy; /* Height. */ | |||
} SIZEF; | |||
typedef SIZEF *PSIZEF; | |||
[[Category:Data type]] | [[Category:PM Data type]] |
Latest revision as of 06:01, 21 February 2020
Size structure (FIXED values).
typedef struct _SIZEF { FIXED cx; /* Width. */ FIXED cy; /* Height. */ } SIZEF; typedef SIZEF *PSIZEF;