summaryrefslogtreecommitdiff
path: root/plugins/pychrysa/core/module.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-10-01 17:32:12 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-10-01 17:32:12 (GMT)
commit208abfe4182c0dafc230e0377b3efcc6c24be0f9 (patch)
tree4e084364b0a211ee36a5e8e55b70367f01d720d5 /plugins/pychrysa/core/module.c
parent593aee561015251dfd042dc5e00388f63232c45f (diff)
Defined the ELF support as plugin.
Diffstat (limited to 'plugins/pychrysa/core/module.c')
-rw-r--r--plugins/pychrysa/core/module.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/pychrysa/core/module.c b/plugins/pychrysa/core/module.c
index f42f08f..6c44197 100644
--- a/plugins/pychrysa/core/module.c
+++ b/plugins/pychrysa/core/module.c
@@ -30,6 +30,7 @@
#include "formats.h"
#include "params.h"
+#include "../access.h"
@@ -82,6 +83,9 @@ bool add_core_module_to_python_module(PyObject *super)
result &= register_python_formats(module);
result &= register_python_params(module);
+ if (result)
+ register_access_to_python_module("pychrysalide.core", module);
+
loading_failed:
assert(result);