Bug 792781 - 'Go to Folder' incorrectly unrefs CamelFolder twice
[evolution.git] / src / modules / mail / evolution-module-mail.c
blob6ca44e82d60463e3bc3c066a32169963edfa1bd0
1 /*
2 * evolution-module-mail.c
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 * for more details.
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
21 #include "evolution-config.h"
23 #include "e-mail-attachment-handler.h"
25 #include "e-mail-config-hook.h"
26 #include "e-mail-event-hook.h"
28 #include "e-mail-shell-backend.h"
29 #include "e-mail-shell-content.h"
30 #include "e-mail-shell-sidebar.h"
31 #include "e-mail-shell-view.h"
33 #include "em-account-prefs.h"
35 /* Module Entry Points */
36 void e_module_load (GTypeModule *type_module);
37 void e_module_unload (GTypeModule *type_module);
39 G_MODULE_EXPORT void
40 e_module_load (GTypeModule *type_module)
42 /* Register dynamically loaded types. */
44 e_mail_attachment_handler_register_type (type_module);
46 e_mail_config_hook_register_type (type_module);
47 e_mail_event_hook_register_type (type_module);
49 e_mail_shell_view_type_register (type_module);
50 e_mail_shell_backend_type_register (type_module);
51 e_mail_shell_content_type_register (type_module);
52 e_mail_shell_sidebar_type_register (type_module);
54 em_account_prefs_type_register (type_module);
57 G_MODULE_EXPORT void
58 e_module_unload (GTypeModule *type_module)