py_bindproperty method
Bind a property to type.
@param type the target type.
@param name name of the property.
@param getter getter function.
@param setter setter function. Use NULL
if not needed.
Implementation
void py_bindproperty(
int type,
ffi.Pointer<ffi.Char> name,
py_CFunction getter,
py_CFunction setter,
) {
return _py_bindproperty(
type,
name,
getter,
setter,
);
}