GetCharWidthW method

int GetCharWidthW(
  1. Pointer<HDC__> hdc,
  2. int iFirst,
  3. int iLast,
  4. Pointer<Int32> lpBuffer,
)

Implementation

int GetCharWidthW(
  ffi.Pointer<HDC__> hdc,
  int iFirst,
  int iLast,
  ffi.Pointer<ffi.Int32> lpBuffer,
) {
  return (_GetCharWidthW ??=
      _dylib.lookupFunction<_c_GetCharWidthW, _dart_GetCharWidthW>(
          'GetCharWidthW'))(
    hdc,
    iFirst,
    iLast,
    lpBuffer,
  );
}