ExtCreatePen function gdi32
The ExtCreatePen function creates a logical cosmetic or geometric pen that has the specified style, width, and brush attributes.
HPEN ExtCreatePen(
DWORD iPenStyle,
DWORD cWidth,
const LOGBRUSH *plbrush,
DWORD cStyle,
const DWORD *pstyle
);
Implementation
int ExtCreatePen(int iPenStyle, int cWidth, Pointer<LOGBRUSH> plbrush,
int cStyle, Pointer<Uint32> pstyle) =>
_ExtCreatePen(iPenStyle, cWidth, plbrush, cStyle, pstyle);