summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/helpers.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-01-16 17:53:37 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-01-16 17:53:37 (GMT)
commit3a4a977678848d7284df585480e4056d5553a4f2 (patch)
treeb9bbe22d6a6d002c57f4d0552bf66fad4de8069a /plugins/pychrysalide/helpers.h
parent69806d75d7a3d7c0501d8205cd561447b52ac0b2 (diff)
Dealt with registers and register operands in the Python bindings.
Diffstat (limited to 'plugins/pychrysalide/helpers.h')
-rw-r--r--plugins/pychrysalide/helpers.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/pychrysalide/helpers.h b/plugins/pychrysalide/helpers.h
index bf95e61..ce5840b 100644
--- a/plugins/pychrysalide/helpers.h
+++ b/plugins/pychrysalide/helpers.h
@@ -89,6 +89,9 @@ bool register_python_module_object(PyObject *, PyTypeObject *);
#define APPLY_ABSTRACT_FLAG(tp) tp->tp_new = PyBaseObject_Type.tp_new
+/* Marque l'absence d'implémentation pour une méthode donnée. */
+PyObject *not_yet_implemented_method(PyObject *, PyObject *);
+
/* Définit dans le tas de Python un nouveau type. */
PyTypeObject *define_python_dynamic_type(const PyTypeObject *);