CharUpperBuffW method

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

Implementation

int CharUpperBuffW(
  ffi.Pointer<ffi.Uint16> lpsz,
  int cchLength,
) {
  return (_CharUpperBuffW ??=
      _dylib.lookupFunction<_c_CharUpperBuffW, _dart_CharUpperBuffW>(
          'CharUpperBuffW'))(
    lpsz,
    cchLength,
  );
}