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 /shell/test | |
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 'shell/test')
-rw-r--r-- | shell/test/evolution-module-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/test/evolution-module-test.c b/shell/test/evolution-module-test.c index 5f3bb26997..ceae63cf7c 100644 --- a/shell/test/evolution-module-test.c +++ b/shell/test/evolution-module-test.c @@ -26,7 +26,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. */ @@ -35,7 +35,7 @@ e_module_load (GTypeModule *type_module) e_test_shell_view_register_type (type_module); } -void +G_MODULE_EXPORT void e_module_unload (GTypeModule *type_module) { } |