TextOut function gdi32

bool TextOut(
  1. HDC hdc,
  2. int x,
  3. int y,
  4. PCWSTR lpString,
  5. int c,
)

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;