PyStructSequence_InitType2 method

int PyStructSequence_InitType2(
  1. Pointer<PyTypeObject> type,
  2. Pointer<PyStructSequence_Desc> desc
)

Implementation

int PyStructSequence_InitType2(
  ffi.Pointer<PyTypeObject> type,
  ffi.Pointer<PyStructSequence_Desc> desc,
) {
  return _PyStructSequence_InitType2(
    type,
    desc,
  );
}