CreateFontIndirectA method

Pointer<HFONT__> CreateFontIndirectA(
  1. Pointer<LPLOGFONTA> lplf
)

Implementation

ffi.Pointer<HFONT__> CreateFontIndirectA(
  ffi.Pointer<LPLOGFONTA> lplf,
) {
  return (_CreateFontIndirectA ??= _dylib.lookupFunction<
      _c_CreateFontIndirectA,
      _dart_CreateFontIndirectA>('CreateFontIndirectA'))(
    lplf,
  );
}