| 45 | } |
| 46 | |
| 47 | void ExtTextOut(HDC hdc, const POINT& pt, const RECT& rect, const std::wstring& text) |
| 48 | { |
| 49 | ::ExtTextOutW(hdc, pt.x, pt.y, ETO_CLIPPED | ETO_OPAQUE, &rect, text.c_str(), text.size(), nullptr); |
| 50 | } |
| 51 | |
| 52 | int GetTextOffset(HDC hdc, const std::string& s, int xPos) |
| 53 | { |
no test coverage detected