summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/helpers.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-01-28 22:36:19 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-01-28 22:36:19 (GMT)
commit7560e598bf1136b4e7989124fe2b4665508b67b3 (patch)
tree8426c8353369841fc93cf977b6743ba6ced84ec0 /plugins/pychrysalide/helpers.h
parent94cb8acac1027a4deee933c84d7918f4a5ea4983 (diff)
Included interfaces into the Python module gathering all features.
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 f7ebdc3..ffbfe30 100644
--- a/plugins/pychrysalide/helpers.h
+++ b/plugins/pychrysalide/helpers.h
@@ -104,6 +104,9 @@ bool _register_class_for_pygobject(PyObject *, GType, PyTypeObject *, PyTypeObje
#define register_class_for_pygobject(dict, gtype, type, base) \
_register_class_for_pygobject(dict, gtype, type, base, NULL)
+/* Enregistre correctement une interface GObject pour Python. */
+bool register_interface_for_pygobject(PyObject *, GType, PyTypeObject *);
+
/* Enregistre un type Python dérivant d'un type GLib dynamique. */
bool register_class_for_dynamic_pygobject(GType, PyTypeObject *, PyTypeObject *);