TextOut function gdi32
Writes a character string at the specified location, using the currently selected font, background color, and text color.
To learn more, see learn.microsoft.com/windows/win32/api/wingdi/nf-wingdi-textoutw.
Implementation
@pragma('vm:prefer-inline')
bool TextOut(HDC hdc, int x, int y, PCWSTR lpString, int c) =>
_TextOut(hdc, x, y, lpString, c) != FALSE;