CharLowerBuffA method

int CharLowerBuffA(
  1. Pointer<Int8> lpsz,
  2. int cchLength
)

Implementation

int CharLowerBuffA(
  ffi.Pointer<ffi.Int8> lpsz,
  int cchLength,
) {
  return (_CharLowerBuffA ??=
      _dylib.lookupFunction<_c_CharLowerBuffA, _dart_CharLowerBuffA>(
          'CharLowerBuffA'))(
    lpsz,
    cchLength,
  );
}