CharLowerBuffW method

int CharLowerBuffW(
  1. Pointer<Uint16> lpsz,
  2. int cchLength
)

Implementation

int CharLowerBuffW(
  ffi.Pointer<ffi.Uint16> lpsz,
  int cchLength,
) {
  return (_CharLowerBuffW ??=
      _dylib.lookupFunction<_c_CharLowerBuffW, _dart_CharLowerBuffW>(
          'CharLowerBuffW'))(
    lpsz,
    cchLength,
  );
}