FrameRect function user32

int FrameRect(
  1. int hDC,
  2. Pointer<RECT> lprc,
  3. int hbr
)

The FrameRect function draws a border around the specified rectangle by using the specified brush. The width and height of the border are always one logical unit.

int FrameRect(
  HDC        hDC,
  const RECT *lprc,
  HBRUSH     hbr
);

Implementation

int FrameRect(int hDC, Pointer<RECT> lprc, int hbr) =>
    _FrameRect(hDC, lprc, hbr);