ExtTextOut function gdi32
The ExtTextOut function draws text using the currently selected font, background color, and text color. You can optionally provide dimensions to be used for clipping, opaquing, or both.
BOOL ExtTextOutW(
HDC hdc,
int x,
int y,
UINT options,
const RECT *lprect,
LPCWSTR lpString,
UINT c,
const INT *lpDx
);
Implementation
int ExtTextOut(int hdc, int x, int y, int options, Pointer<RECT> lprect,
Pointer<Utf16> lpString, int c, Pointer<Int32> lpDx) =>
_ExtTextOut(hdc, x, y, options, lprect, lpString, c, lpDx);