Py_EncodeLocaleEx method

int Py_EncodeLocaleEx(
  1. Pointer<WChar> text,
  2. Pointer<Pointer<Char>> str,
  3. Pointer<Size> error_pos,
  4. Pointer<Pointer<Char>> reason,
  5. int current_locale,
  6. int errors,
)

Implementation

int Py_EncodeLocaleEx(
  ffi.Pointer<ffi.WChar> text,
  ffi.Pointer<ffi.Pointer<ffi.Char>> str,
  ffi.Pointer<ffi.Size> error_pos,
  ffi.Pointer<ffi.Pointer<ffi.Char>> reason,
  int current_locale,
  int errors,
) {
  return _Py_EncodeLocaleEx(
    text,
    str,
    error_pos,
    reason,
    current_locale,
    errors,
  );
}