blob: 6326583032ba577e6765a2dd3b7c19c97276590f [file] [log] [blame]
#include <Python.h>
#ifdef _WIN32
__declspec(dllimport)
#endif
extern PyObject* initModule();
PyMODINIT_FUNC PyInit__C()
{
return initModule();
}