GetGlyphOutlineA method

int GetGlyphOutlineA(
  1. Pointer<HDC__> hdc,
  2. int uChar,
  3. int fuFormat,
  4. Pointer<LPGLYPHMETRICS> lpgm,
  5. int cjBuffer,
  6. Pointer<Void> pvBuffer,
  7. Pointer<LPMAT2> lpmat2,
)

Implementation

int GetGlyphOutlineA(
  ffi.Pointer<HDC__> hdc,
  int uChar,
  int fuFormat,
  ffi.Pointer<LPGLYPHMETRICS> lpgm,
  int cjBuffer,
  ffi.Pointer<ffi.Void> pvBuffer,
  ffi.Pointer<LPMAT2> lpmat2,
) {
  return (_GetGlyphOutlineA ??=
      _dylib.lookupFunction<_c_GetGlyphOutlineA, _dart_GetGlyphOutlineA>(
          'GetGlyphOutlineA'))(
    hdc,
    uChar,
    fuFormat,
    lpgm,
    cjBuffer,
    pvBuffer,
    lpmat2,
  );
}