"Fossies" - the Fresh Open Source Software Archive

Member "evolution-mapi-3.46.1/src/configuration/module-mapi-configuration.c" (2 Dec 2022, 1969 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-configuration.c" see the Fossies "Dox" file reference documentation.

    1 /*
    2  * module-mapi-mail-config.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-book-config-mapi.h"
   24 #include "e-book-config-mapigal.h"
   25 #include "e-cal-config-mapi.h"
   26 #include "e-mail-config-mapi-backend.h"
   27 #include "e-mail-config-mapi-page.h"
   28 #include "e-mail-config-mapi-extension.h"
   29 #include "e-mail-config-mapi-offline-options.h"
   30 #include "e-mapi-config-ui-extension.h"
   31 #include "e-source-mapi-folder.h"
   32 
   33 /* Module Entry Points */
   34 void e_module_load (GTypeModule *type_module);
   35 void e_module_unload (GTypeModule *type_module);
   36 
   37 G_MODULE_EXPORT void
   38 e_module_load (GTypeModule *type_module)
   39 {
   40     bindtextdomain (GETTEXT_PACKAGE, EXCHANGE_MAPI_LOCALEDIR);
   41     bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
   42 
   43     e_source_mapi_folder_type_register (type_module);
   44 
   45     e_book_config_mapi_type_register (type_module);
   46     e_book_config_mapigal_type_register (type_module);
   47     e_cal_config_mapi_type_register (type_module);
   48     e_mail_config_mapi_backend_type_register (type_module);
   49     e_mail_config_mapi_page_type_register (type_module);
   50     e_mail_config_mapi_extension_type_register (type_module);
   51     e_mail_config_mapi_offline_options_type_register (type_module);
   52     e_mapi_config_ui_extension_type_register (type_module);
   53 }
   54 
   55 G_MODULE_EXPORT void
   56 e_module_unload (GTypeModule *type_module)
   57 {
   58 }