~ubuntu-branches/ubuntu/feisty/gnumeric/feisty

« back to all changes in this revision

Viewing changes to plugins/perl-loader/boot.c

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2006-12-06 13:55:23 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061206135523-6bh02cebuk0hduva
Tags: 1.7.5-1ubuntu1
* Merge with debian experimental:
  - debian/control, debian/*-gtk-*, debian/rules,
    debian/shlibs.local: Xubuntu changes for
    gtk/gnome multibuild.
  - run intltool-update in po*
  - Build Depend on intltool

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
GType perl_get_loader_type (ErrorInfo **ret_error);
17
17
 
18
 
GType
 
18
G_MODULE_EXPORT GType
19
19
perl_get_loader_type (ErrorInfo **ret_error)
20
20
{
21
21
        GO_INIT_RET_ERROR_INFO (ret_error);
25
25
G_MODULE_EXPORT void
26
26
go_plugin_shutdown (GOPlugin *plugin, GOCmdContext *cc)
27
27
{
 
28
}
 
29
 
 
30
G_MODULE_EXPORT void
 
31
go_plugin_init (GOPlugin *plugin, GOCmdContext *cc)
 
32
{
28
33
        GTypeModule *module = go_plugin_get_type_module (plugin);
29
 
        gnm_perl_plugin_loader_register (module);
30
 
}
31
 
 
32
 
G_MODULE_EXPORT void
33
 
go_plugin_init (GOPlugin *plugin, GOCmdContext *cc)
34
 
{
 
34
        gnm_perl_plugin_loader_register_type (module);
35
35
}