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