DrawFocusRect function user32

int DrawFocusRect(
  1. int hDC,
  2. Pointer<RECT> lprc
)

The DrawFocusRect function draws a rectangle in the style used to indicate that the rectangle has the focus.

BOOL DrawFocusRect(
  HDC        hDC,
  const RECT *lprc);

Implementation

int DrawFocusRect(int hDC, Pointer<RECT> lprc) => _DrawFocusRect(hDC, lprc);