summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/core/module.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-01-21 18:49:45 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-01-21 18:49:45 (GMT)
commite10081897750e74dfd01266606870aab3638cfbf (patch)
treeb9fbb90301a9ca443af82e3f9dd5e58f05dfbbe3 /plugins/pychrysalide/core/module.c
parent7c04cf1a2dcc9e04ce8f280f399d6904053e89d9 (diff)
Provided a way to register new available processors from Python.
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 3d117a5..d954821 100644
--- a/plugins/pychrysalide/core/module.c
+++ b/plugins/pychrysalide/core/module.c
@@ -32,6 +32,7 @@
#include "global.h"
#include "logs.h"
#include "params.h"
+#include "processors.h"
#include "queue.h"
#include "../helpers.h"
@@ -96,6 +97,7 @@ bool populate_core_module(void)
if (result) result = populate_core_module_with_global();
if (result) result = populate_core_module_with_logs();
if (result) result = populate_core_module_with_params();
+ if (result) result = populate_core_module_with_processors();
if (result) result = populate_core_module_with_queue();
assert(result);