summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/glibext/strbuilder.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2024-12-10 12:27:25 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2024-12-10 12:27:25 (GMT)
commit01c72e2f339f9cda8a8f08748ed591276a7aaa99 (patch)
treecd5e12b3d0deb7f5fd4f27ebf4d2de4b9a1a25c6 /plugins/pychrysalide/glibext/strbuilder.h
parenta07282d2f96ad99c9e280f139a63757b34a23695 (diff)
Implement a toString()-like interface.
Diffstat (limited to 'plugins/pychrysalide/glibext/strbuilder.h')
-rw-r--r--plugins/pychrysalide/glibext/strbuilder.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/pychrysalide/glibext/strbuilder.h b/plugins/pychrysalide/glibext/strbuilder.h
new file mode 100644
index 0000000..d6aae20
--- /dev/null
+++ b/plugins/pychrysalide/glibext/strbuilder.h
@@ -0,0 +1,45 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * strbuilder.h - prototypes pour l'équivalent Python du fichier "glibext/strbuilder.h"
+ *
+ * Copyright (C) 2021 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * Chrysalide is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Chrysalide is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+
+#ifndef _PLUGINS_PYCHRYSALIDE_GLIBEXT_STRBUILDER_H
+#define _PLUGINS_PYCHRYSALIDE_GLIBEXT_STRBUILDER_H
+
+
+#include <Python.h>
+#include <stdbool.h>
+
+
+
+/* Fournit un accès à une définition de type à diffuser. */
+PyTypeObject *get_python_string_builder_type(void);
+
+/* Prend en charge l'objet 'pychrysalide.glibext.StringBuilder'. */
+bool ensure_python_string_builder_is_registered(void);
+
+/* Tente de convertir en interface d'exportation en chaîne. */
+int convert_to_string_builder(PyObject *, void *);
+
+
+
+#endif /* _PLUGINS_PYCHRYSALIDE_GLIBEXT_STRBUILDER_H */