cutter/src/common/PythonAPI.h

14 lines
180 B
C
Raw Normal View History

2018-02-11 17:59:23 +00:00
#ifndef PYTHONAPI_H
#define PYTHONAPI_H
#ifdef CUTTER_ENABLE_PYTHON
2018-03-02 13:15:53 +00:00
2019-04-08 20:07:35 +00:00
#define Py_LIMITED_API 0x03050000
2018-02-11 17:59:23 +00:00
#include <Python.h>
2018-02-11 17:59:23 +00:00
PyObject *PyInit_api();
2018-03-02 13:15:53 +00:00
#endif
2018-02-11 17:59:23 +00:00
#endif // PYTHONAPI_H