summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/core/module.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-03-11 21:57:05 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-03-11 21:57:05 (GMT)
commit8088f1cbb4304c686ff41520099707a333084a4e (patch)
tree147411c3f90097dc1ae950ec390df2dfccf07ad7 /plugins/pychrysalide/core/module.c
parenta33dd28e763e3a8b04145fb549aca9320e100a4b (diff)
Defined a new Dex demangler with MUTF-8 support as plugin.
Diffstat (limited to 'plugins/pychrysalide/core/module.c')
-rw-r--r--plugins/pychrysalide/core/module.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/pychrysalide/core/module.c b/plugins/pychrysalide/core/module.c
index ff7f828..dd89ea0 100644
--- a/plugins/pychrysalide/core/module.c
+++ b/plugins/pychrysalide/core/module.c
@@ -28,6 +28,7 @@
#include <assert.h>
+#include "demanglers.h"
#include "formats.h"
#include "logs.h"
#include "params.h"
@@ -81,6 +82,7 @@ bool add_core_module_to_python_module(PyObject *super)
result = true;
+ result &= register_python_demanglers(module);
result &= register_python_formats(module);
result &= register_python_logs(module);
result &= register_python_params(module);