mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
14 lines
180 B
C
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
|