31 Mar
2015
31 Mar
'15
3:05 a.m.
Nikolay Sivov <nsivov(a)codeweavers.com> wrote:
+ /* estimate using stock font metrics */ + hdc = GetDC(0); + hOldFont = SelectObject(hdc, GetStockObject (SYSTEM_FONT)); + GetTextMetricsA(hdc, &tm); + SelectObject(hdc, hOldFont); + ReleaseDC(0, hdc);
Probably DEFAULT_GUI_FONT should be used instead of SYSTEM, you really don't want to see SYSTEM_FONT on the screen, or just use its metrics. -- Dmitry.