= {
{
"WithOneParameter",
WithOneParameter, METH_VARARGS,
"Test function with one parameter."},
{
"WithoutParameter",
WithoutParameter, METH_NOARGS,
"Test function without parameter."},
{"WithMultipleParameter", WithMultipleParameter, METH_VARARGS, "Test function with multiple parameter."},
{
"GetFunction",
GetFunction, METH_VARARGS,
"Test function getter."},
{NULL, NULL, 0, NULL}
}
static PyObject * WithoutParameter(PyObject *self, PyObject *args)
Definition TestingPythonExtensions.h:31
static PyObject * WithOneParameter(PyObject *self, PyObject *args)
Definition TestingPythonExtensions.h:21
static PyObject * GetFunction(PyObject *self, PyObject *args)
Definition TestingPythonExtensions.h:9