DrawFrameControl function user32

bool DrawFrameControl(
  1. HDC hdc,
  2. Pointer<RECT> lprc,
  3. int uType,
  4. int uState,
)

Draws a frame control of the specified type and style.

To learn more, see learn.microsoft.com/windows/win32/api/winuser/nf-winuser-drawframecontrol.

Implementation

@pragma('vm:prefer-inline')
bool DrawFrameControl(HDC hdc, Pointer<RECT> lprc, int uType, int uState) =>
    _DrawFrameControl(hdc, lprc, uType, uState) != FALSE;