Lines Matching defs:font
79 \param font U_FONT object (as a char * pointer)
82 const char *font
84 printf("Height:%d ", *(int16_t *)(font + offsetof(U_FONT,Height )));
85 printf("Width:%d ", *(int16_t *)(font + offsetof(U_FONT,Width )));
86 printf("Escapement:%d ", *(int16_t *)(font + offsetof(U_FONT,Escapement )));
87 printf("Orientation:%d ", *(int16_t *)(font + offsetof(U_FONT,Orientation )));
88 printf("Weight:%d ", *(int16_t *)(font + offsetof(U_FONT,Weight )));
89 printf("Italic:0x%2.2X ", *(uint8_t *)(font + offsetof(U_FONT,Italic )));
90 printf("Underline:0x%2.2X ", *(uint8_t *)(font + offsetof(U_FONT,Underline )));
91 printf("StrikeOut:0x%2.2X ", *(uint8_t *)(font + offsetof(U_FONT,StrikeOut )));
92 printf("CharSet:0x%2.2X ", *(uint8_t *)(font + offsetof(U_FONT,CharSet )));
93 printf("OutPrecision:0x%2.2X ", *(uint8_t *)(font + offsetof(U_FONT,OutPrecision )));
94 printf("ClipPrecision:0x%2.2X ", *(uint8_t *)(font + offsetof(U_FONT,ClipPrecision )));
95 printf("Quality:0x%2.2X ", *(uint8_t *)(font + offsetof(U_FONT,Quality )));
96 printf("PitchAndFamily:0x%2.2X ", *(uint8_t *)(font + offsetof(U_FONT,PitchAndFamily)));
97 printf("FaceName:%s ", (font + offsetof(U_FONT,FaceName )));
1293 const char *font; /* Note, because of possible struct alignment issue have to use char * to reference the data */
1294 int size = U_WMRCREATEFONTINDIRECT_get(contents, &font);
1297 font_print(font);