wrapperfunc typedef

wrapperfunc = Pointer<NativeFunction<Pointer<PyObject> Function(Pointer<PyObject> self, Pointer<PyObject> args, Pointer<Void> wrapped)>>

Implementation

typedef wrapperfunc = ffi.Pointer<
    ffi.NativeFunction<
        ffi.Pointer<PyObject> Function(ffi.Pointer<PyObject> self,
            ffi.Pointer<PyObject> args, ffi.Pointer<ffi.Void> wrapped)>>;