CharToOemA method

int CharToOemA(
  1. Pointer<Int8> pSrc,
  2. Pointer<Int8> pDst
)

Implementation

int CharToOemA(
  ffi.Pointer<ffi.Int8> pSrc,
  ffi.Pointer<ffi.Int8> pDst,
) {
  return (_CharToOemA ??=
      _dylib.lookupFunction<_c_CharToOemA, _dart_CharToOemA>('CharToOemA'))(
    pSrc,
    pDst,
  );
}