diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/pychrysa/pychrysa.c | 21 | ||||
-rw-r--r-- | plugins/pychrysa/pychrysa.h | 3 |
2 files changed, 22 insertions, 2 deletions
diff --git a/plugins/pychrysa/pychrysa.c b/plugins/pychrysa/pychrysa.c index d7cdfe4..0e8446d 100644 --- a/plugins/pychrysa/pychrysa.c +++ b/plugins/pychrysa/pychrysa.c @@ -180,8 +180,6 @@ bool init_plugin(GPluginModule *plugin, GObject *ref) } - //Py_Finalize(); - return true; } @@ -189,6 +187,25 @@ bool init_plugin(GPluginModule *plugin, GObject *ref) /****************************************************************************** * * +* Paramètres : plugin = instance représentant le greffon en déchargement. * +* * +* Description : Libère le greffon permettant l'usage de Python. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void exit_plugin(GPluginModule *plugin) +{ + Py_Finalize(); + +} + + +/****************************************************************************** +* * * Paramètres : plugin = greffon à consulter. * * * * Description : Indique les opérations offertes par un greffon donné. * diff --git a/plugins/pychrysa/pychrysa.h b/plugins/pychrysa/pychrysa.h index daa0ccf..4145f11 100644 --- a/plugins/pychrysa/pychrysa.h +++ b/plugins/pychrysa/pychrysa.h @@ -40,6 +40,9 @@ char *get_plugin_name(void); /* Initialise le greffon permettant l'usage de Python. */ bool init_plugin(GPluginModule *, GObject *); +/* Libère le greffon permettant l'usage de Python. */ +void exit_plugin(GPluginModule *); + /* Indique les opérations offertes par un greffon donné. */ PluginAction get_plugin_action(const GPluginModule *); |