CreateFontIndirectW method

Pointer<HFONT__> CreateFontIndirectW(
  1. Pointer<LPLOGFONTW> lplf
)

Implementation

ffi.Pointer<HFONT__> CreateFontIndirectW(
  ffi.Pointer<LPLOGFONTW> lplf,
) {
  return (_CreateFontIndirectW ??= _dylib.lookupFunction<
      _c_CreateFontIndirectW,
      _dart_CreateFontIndirectW>('CreateFontIndirectW'))(
    lplf,
  );
}