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