/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
custcntl.h | 47 typedef INT (CALLBACK *LPFNCCSIZETOTEXTA)(DWORD flStyle,DWORD flExtStyle,HFONT hfont,LPSTR pszText); 48 typedef INT (CALLBACK *LPFNCCSIZETOTEXTW)(DWORD flStyle,DWORD flExtStyle,HFONT hfont,LPWSTR pszText);
|
windowsx.h16 | 44 #define DeleteFont(hfont) DeleteObject((HGDIOBJ)(HFONT)(hfont)) 45 #define SelectFont(hdc,hfont) ((HFONT)SelectObject((hdc),(HGDIOBJ)(HFONT)(hfont))) 46 #define GetStockFont(i) ((HFONT)GetStockObject(i)) 76 #define SetWindowFont(hwnd,hfont,fRedraw) FORWARD_WM_SETFONT((hwnd),(hfont),(fRedraw),SendMessage [all...] |
windowsx.h | 41 #define DeleteFont(hfont) DeleteObject((HGDIOBJ)(HFONT)(hfont)) 42 #define SelectFont(hdc,hfont) ((HFONT)SelectObject((hdc),(HGDIOBJ)(HFONT)(hfont))) 43 #define GetStockFont(i) ((HFONT)GetStockObject(i)) 62 #define SetWindowFont(hwnd,hfont,fRedraw) FORWARD_WM_SETFONT((hwnd),(hfont),(fRedraw),SNDMSG [all...] |
commctrl.h | [all...] |
/external/harfbuzz_ng/src/ |
hb-directwrite.cc | 228 HFONT hfont; member in struct:hb_directwrite_shaper_font_data_t 266 data->hfont = CreateFontIndirectW (&data->log_font); 267 if (unlikely (!data->hfont)) 274 if (!SelectObject (data->hdc, data->hfont)) 289 if (data->hfont) 290 DeleteObject (data->hfont); 302 HFONT 307 return font_data->hfont;
|
hb-uniscribe.cc | 487 HFONT hfont; member in struct:hb_uniscribe_shaper_font_data_t 536 data->hfont = CreateFontIndirectW (&data->log_font); 537 if (unlikely (!data->hfont)) { 543 if (!SelectObject (data->hdc, data->hfont)) { 557 if (data->hfont) 558 DeleteObject (data->hfont); 572 HFONT 577 return font_data->hfont;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/ |
gdiplusheaders.h | 336 Font(HDC hdc, HFONT hfont);
|
gdiplusimpl.h | 753 __inline__ Font::Font(HDC hdc, HFONT hfont): 757 if (GetObject(hfont, sizeof logfont, &logfont)) { [all...] |