diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-11 03:54:08 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-11 03:54:08 +0800 |
commit | cdbaf741c1cb50b41c03c17f9948f6f29b9be021 (patch) | |
tree | bfa83a8d0988681276d97e45c54225442e06c8a5 /mail | |
parent | 26185023a8319ae52ea44aac672ec5b957761d0f (diff) | |
download | gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.tar.gz gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.tar.zst gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.zip |
Add G_MODULE_EXPORT to exported module functions.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/evolution-module-mail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/evolution-module-mail.c b/mail/evolution-module-mail.c index 6f6c956202..936ed9a0b5 100644 --- a/mail/evolution-module-mail.c +++ b/mail/evolution-module-mail.c @@ -28,7 +28,7 @@ void e_module_load (GTypeModule *type_module); void e_module_unload (GTypeModule *type_module); -void +G_MODULE_EXPORT void e_module_load (GTypeModule *type_module) { /* Register dynamically loaded types. */ @@ -39,7 +39,7 @@ e_module_load (GTypeModule *type_module) e_mail_shell_view_register_type (type_module); } -void +G_MODULE_EXPORT void e_module_unload (GTypeModule *type_module) { } |