summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/core/module.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2024-11-02 22:03:25 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2024-11-02 22:03:25 (GMT)
commit1bef27ee10a820ceabdcfc6389e61b7fab934eea (patch)
tree2194de32593137d3bfda7256c1e65cb1743e70db /plugins/pychrysalide/core/module.c
parent699e2811a9305f871fe9adcb4797461e947cc863 (diff)
Load UI plugins only in case of graphical support.
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 b588057..4af0403 100644
--- a/plugins/pychrysalide/core/module.c
+++ b/plugins/pychrysalide/core/module.c
@@ -31,6 +31,7 @@
//#include "demanglers.h"
//#include "global.h"
#include "logs.h"
+#include "nox.h"
//#include "params.h"
//#include "processors.h"
//#include "queue.h"
@@ -105,6 +106,7 @@ bool populate_core_module(void)
//if (result) result = populate_core_module_with_demanglers();
//if (result) result = populate_core_module_with_global();
if (result) result = populate_core_module_with_logs();
+ if (result) result = populate_core_module_with_nox();
//if (result) result = populate_core_module_with_params();
//if (result) result = populate_core_module_with_processors();
//if (result) result = populate_core_module_with_queue();