DrawStatusText function comctl32

void DrawStatusText(
  1. HDC hDC,
  2. Pointer<RECT> lprc,
  3. PCWSTR pszText,
  4. int uFlags,
)

Draws the specified text in the style of a status window with borders.

To learn more, see learn.microsoft.com/windows/win32/api/commctrl/nf-commctrl-drawstatustextw.

Implementation

@pragma('vm:prefer-inline')
void DrawStatusText(HDC hDC, Pointer<RECT> lprc, PCWSTR pszText, int uFlags) =>
    _DrawStatusText(hDC, lprc, pszText, uFlags);