mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-23 13:25:27 +00:00
23115d7b1c
Refactor CMakeLists.txt for bindings Fix for CUTTER_ENABLE_JUPYTER=OFF
15 lines
278 B
C
15 lines
278 B
C
#ifndef QTRESIMPORTER_H
|
|
#define QTRESIMPORTER_H
|
|
|
|
#ifdef CUTTER_ENABLE_PYTHON
|
|
|
|
PyObject *PyInit_qtres();
|
|
|
|
PyObject *QtResImport(const char *name);
|
|
|
|
#define RegQtResImporter() Py_DecRef(QtResImport("reg_qtres_importer"))
|
|
|
|
#endif // CUTTER_ENABLE_PYTHON
|
|
|
|
#endif // QTRESIMPORTER_H
|