py_newnativefunc method

void py_newnativefunc(
  1. py_OutRef arg0,
  2. py_CFunction arg1
)

Create a nativefunc object.

Implementation

void py_newnativefunc(
  py_OutRef arg0,
  py_CFunction arg1,
) {
  return _py_newnativefunc(
    arg0,
    arg1,
  );
}