blob: e029f5ff8b5561d2c4bc8d919b8cb53dea44284c [file] [log] [blame]
#include <Python.h>
#ifdef _WIN32
__declspec(dllimport)
#endif
extern PyObject* initModule();
#if PY_MAJOR_VERSION == 2
PyMODINIT_FUNC init_C()
{
initModule();
}
#else
PyMODINIT_FUNC PyInit__C()
{
return initModule();
}
#endif