"Fossies" - the Fresh Open Source Software Archive 
Member "evolution-mapi-3.46.1/src/collection/module-mapi-backend.c" (2 Dec 2022, 1382 Bytes) of package /linux/misc/evolution-mapi-3.46.1.tar.xz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "module-mapi-backend.c" see the
Fossies "Dox" file reference documentation.
1 /*
2 * module-mapi-backend.c
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) version 3.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with the program; if not, see <http://www.gnu.org/licenses/>
16 *
17 */
18
19 #include "evolution-mapi-config.h"
20
21 #include <glib/gi18n-lib.h>
22
23 #include "e-source-mapi-folder.h"
24
25 #include "e-mapi-backend.h"
26 #include "e-mapi-backend-factory.h"
27
28 /* Module Entry Points */
29 void e_module_load (GTypeModule *type_module);
30 void e_module_unload (GTypeModule *type_module);
31
32 G_MODULE_EXPORT void
33 e_module_load (GTypeModule *type_module)
34 {
35 bindtextdomain (GETTEXT_PACKAGE, EXCHANGE_MAPI_LOCALEDIR);
36 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
37
38 e_source_mapi_folder_type_register (type_module);
39
40 e_mapi_backend_type_register (type_module);
41 e_mapi_backend_factory_type_register (type_module);
42 }
43
44 G_MODULE_EXPORT void
45 e_module_unload (GTypeModule *type_module)
46 {
47 }