PyTime_ObjectToTimeval method

int PyTime_ObjectToTimeval(
  1. Pointer<PyObject> obj,
  2. Pointer<time_t> sec,
  3. Pointer<Long> usec,
  4. int arg3,
)

Implementation

int PyTime_ObjectToTimeval(
  ffi.Pointer<PyObject> obj,
  ffi.Pointer<time_t> sec,
  ffi.Pointer<ffi.Long> usec,
  int arg3,
) {
  return _PyTime_ObjectToTimeval(
    obj,
    sec,
    usec,
    arg3,
  );
}