summaryrefslogtreecommitdiff
path: root/plugins/pychrysa/format/executable.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysa/format/executable.c')
-rw-r--r--plugins/pychrysa/format/executable.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/plugins/pychrysa/format/executable.c b/plugins/pychrysa/format/executable.c
index 2f10f71..7cdc855 100644
--- a/plugins/pychrysa/format/executable.c
+++ b/plugins/pychrysa/format/executable.c
@@ -25,6 +25,35 @@
#include "executable.h"
+#include "format.h"
+
+
+
+
+
+
+
+
+/******************************************************************************
+* *
+* Paramètres : format = instance existante GLib. *
+* *
+* Description : Crée un nouvel objet Python de type 'ExeFormat'. *
+* *
+* Retour : Instance Python mise en place. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+PyObject *py_executable_format_from_c(GExeFormat *format)
+{
+ return py_binary_format_from_c(G_BIN_FORMAT(format));
+
+}
+
+
+