Home | History | Annotate | Download | only in layout

Lines Matching refs:lf

109     LOGFONT lf;
138 lf.lfHeight = - pt.y;
139 lf.lfWidth = 0;
140 lf.lfEscapement = 0;
141 lf.lfOrientation = 0;
142 lf.lfWeight = 0;
143 lf.lfItalic = 0;
144 lf.lfUnderline = 0;
145 lf.lfStrikeOut = 0;
146 lf.lfCharSet = DEFAULT_CHARSET;
147 lf.lfOutPrecision = 0;
148 lf.lfClipPrecision = 0;
149 lf.lfQuality = 0;
150 lf.lfPitchAndFamily = 0;
152 lstrcpy(lf.lfFaceName, faceName);
154 fFont = CreateFontIndirect(&lf);
194 LOGFONTA lf;
226 lf.lfHeight = - pt.y;
227 lf.lfWidth = 0;
228 lf.lfEscapement = 0;
229 lf.lfOrientation = 0;
230 lf.lfWeight = 0;
231 lf.lfItalic = 0;
232 lf.lfUnderline = 0;
233 lf.lfStrikeOut = 0;
234 lf.lfCharSet = DEFAULT_CHARSET;
235 lf.lfOutPrecision = 0;
236 lf.lfClipPrecision = 0;
237 lf.lfQuality = 0;
238 lf.lfPitchAndFamily = 0;
240 strcpy(lf.lfFaceName, faceName);
242 fFont = CreateFontIndirectA(&lf);