summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/star.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-12-11 21:20:53 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-12-11 21:20:53 (GMT)
commit9d74efa39abcbe68b102ceff79c8d61766387f53 (patch)
tree1c061671b67374a83f8e8a7f9d7f9b7ec5ee31bf /plugins/pychrysalide/star.h
parent9e3c072316b1183c256595f394f3ca22f2d2b66e (diff)
Collected all Python bindings features using a fake module.
Diffstat (limited to 'plugins/pychrysalide/star.h')
-rw-r--r--plugins/pychrysalide/star.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/pychrysalide/star.h b/plugins/pychrysalide/star.h
new file mode 100644
index 0000000..2a53d3e
--- /dev/null
+++ b/plugins/pychrysalide/star.h
@@ -0,0 +1,39 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * star.h - prototypes pour l'exportation complète de tous les éléments du greffon Python
+ *
+ * Copyright (C) 2018 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_STAR_H
+#define _PLUGINS_PYCHRYSALIDE_STAR_H
+
+
+#include <Python.h>
+#include <stdbool.h>
+
+
+
+/* Ajoute le module 'features'à un module Python. */
+bool add_features_module(PyObject *);
+
+
+
+#endif /* _PLUGINS_PYCHRYSALIDE_STAR_H */