diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-11-02 22:03:25 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-11-02 22:03:25 (GMT) |
commit | 1bef27ee10a820ceabdcfc6389e61b7fab934eea (patch) | |
tree | 2194de32593137d3bfda7256c1e65cb1743e70db /plugins/pychrysalide/core/module.c | |
parent | 699e2811a9305f871fe9adcb4797461e947cc863 (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.c | 2 |
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(); |