GetFontUnicodeRanges method

int GetFontUnicodeRanges(
  1. Pointer<HDC__> hdc,
  2. Pointer<LPGLYPHSET> lpgs
)

Implementation

int GetFontUnicodeRanges(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<LPGLYPHSET> lpgs,
) {
  return (_GetFontUnicodeRanges ??= _dylib.lookupFunction<
      _c_GetFontUnicodeRanges,
      _dart_GetFontUnicodeRanges>('GetFontUnicodeRanges'))(
    hdc,
    lpgs,
  );
}