CreateHatchBrush method

Pointer<HBRUSH__> CreateHatchBrush(
  1. int iHatch,
  2. int color
)

Implementation

ffi.Pointer<HBRUSH__> CreateHatchBrush(
  int iHatch,
  int color,
) {
  return (_CreateHatchBrush ??=
      _dylib.lookupFunction<_c_CreateHatchBrush, _dart_CreateHatchBrush>(
          'CreateHatchBrush'))(
    iHatch,
    color,
  );
}