cutter/src/common/PythonAPI.h
karliss 18e98e7868
Don't compile files for features that are disabled. (#2561)
Don't wrap whole cpp file in ifdef, it confuses clang-format.
2021-01-11 23:49:54 +02:00

10 lines
143 B
C

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