GetKerningPairsA method

int GetKerningPairsA(
  1. Pointer<HDC__> hdc,
  2. int nPairs,
  3. Pointer<LPKERNINGPAIR> lpKernPair
)

Implementation

int GetKerningPairsA(
  ffi.Pointer<HDC__> hdc,
  int nPairs,
  ffi.Pointer<LPKERNINGPAIR> lpKernPair,
) {
  return (_GetKerningPairsA ??=
      _dylib.lookupFunction<_c_GetKerningPairsA, _dart_GetKerningPairsA>(
          'GetKerningPairsA'))(
    hdc,
    nPairs,
    lpKernPair,
  );
}