boot.c (gnumeric-1.12.49.tar.xz) | : | boot.c (gnumeric-1.12.50.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 12 | skipping to change at line 12 | |||
* boot.c | * boot.c | |||
* | * | |||
* Author: Zbigniew Chyla (cyba@gnome.pl) | * Author: Zbigniew Chyla (cyba@gnome.pl) | |||
*/ | */ | |||
#include <gnumeric-config.h> | #include <gnumeric-config.h> | |||
#include "gnm-python.h" | #include "gnm-python.h" | |||
#include "gnm-py-interpreter.h" | #include "gnm-py-interpreter.h" | |||
#include "python-loader.h" | #include "python-loader.h" | |||
#include "py-console.h" | #include "py-console.h" | |||
#include <py-gnumeric.h> | ||||
#include <gnm-plugin.h> | #include <gnm-plugin.h> | |||
#include <goffice/goffice.h> | #include <goffice/goffice.h> | |||
#include <gnm-plugin.h> | #include <gnm-plugin.h> | |||
#include <glib.h> | #include <glib.h> | |||
GNM_PLUGIN_MODULE_HEADER; | GNM_PLUGIN_MODULE_HEADER; | |||
GType python_get_loader_type (GOErrorInfo **ret_error); | GType python_get_loader_type (GOErrorInfo **ret_error); | |||
G_MODULE_EXPORT GType | G_MODULE_EXPORT GType | |||
python_get_loader_type (GOErrorInfo **ret_error) | python_get_loader_type (GOErrorInfo **ret_error) | |||
skipping to change at line 42 | skipping to change at line 43 | |||
G_MODULE_EXPORT void | G_MODULE_EXPORT void | |||
go_plugin_init (GOPlugin *plugin, GOCmdContext *cc) | go_plugin_init (GOPlugin *plugin, GOCmdContext *cc) | |||
{ | { | |||
GTypeModule *module = go_plugin_get_type_module (plugin); | GTypeModule *module = go_plugin_get_type_module (plugin); | |||
gnm_py_interpreter_register_type (module); | gnm_py_interpreter_register_type (module); | |||
gnm_python_register_type (module); | gnm_python_register_type (module); | |||
gnm_py_command_line_register_type (module); | gnm_py_command_line_register_type (module); | |||
gnm_py_interpreter_selector_register_type (module); | gnm_py_interpreter_selector_register_type (module); | |||
gnm_python_plugin_loader_register_type (module); | gnm_python_plugin_loader_register_type (module); | |||
} | } | |||
G_MODULE_EXPORT void | ||||
go_plugin_shutdown (GOPlugin *plugin, GOCmdContext *cc) | ||||
{ | ||||
py_gnumeric_shutdown (); | ||||
} | ||||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added |