ExtCreatePen method
Implementation
ffi.Pointer<HPEN__> ExtCreatePen(
int iPenStyle,
int cWidth,
ffi.Pointer<LPLOGBRUSH> plbrush,
int cStyle,
ffi.Pointer<ffi.Uint64> pstyle,
) {
return (_ExtCreatePen ??= _dylib
.lookupFunction<_c_ExtCreatePen, _dart_ExtCreatePen>('ExtCreatePen'))(
iPenStyle,
cWidth,
plbrush,
cStyle,
pstyle,
);
}