cutter/src/common/PythonAPI.h
2019-04-08 22:07:35 +02:00

14 lines
180 B
C

#ifndef PYTHONAPI_H
#define PYTHONAPI_H
#ifdef CUTTER_ENABLE_PYTHON
#define Py_LIMITED_API 0x03050000
#include <Python.h>
PyObject *PyInit_api();
#endif
#endif // PYTHONAPI_H