"Fossies" - the Fresh Open Source Software Archive 
Member "evolution-mapi-3.46.1/src/configuration/e-mail-config-mapi-backend.h" (2 Dec 2022, 2245 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 "e-mail-config-mapi-backend.h" see the
Fossies "Dox" file reference documentation.
1 /*
2 * e-mail-config-mapi-backend.h
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 #ifndef E_MAIL_CONFIG_MAPI_BACKEND_H
20 #define E_MAIL_CONFIG_MAPI_BACKEND_H
21
22 #include <mail/e-mail-config-service-backend.h>
23
24 /* Standard GObject macros */
25 #define E_TYPE_MAIL_CONFIG_MAPI_BACKEND \
26 (e_mail_config_mapi_backend_get_type ())
27 #define E_MAIL_CONFIG_MAPI_BACKEND(obj) \
28 (G_TYPE_CHECK_INSTANCE_CAST \
29 ((obj), E_TYPE_MAIL_CONFIG_MAPI_BACKEND, EMailConfigMapiBackend))
30 #define E_MAIL_CONFIG_MAPI_BACKEND_CLASS(cls) \
31 (G_TYPE_CHECK_CLASS_CAST \
32 ((cls), E_TYPE_MAIL_CONFIG_MAPI_BACKEND, EMailConfigMapiBackendClass))
33 #define E_IS_MAIL_CONFIG_MAPI_BACKEND(obj) \
34 (G_TYPE_CHECK_INSTANCE_TYPE \
35 ((obj), E_TYPE_MAIL_CONFIG_MAPI_BACKEND))
36 #define E_IS_MAIL_CONFIG_MAPI_BACKEND_CLASS(cls) \
37 (G_TYPE_CHECK_CLASS_TYPE \
38 ((cls), E_TYPE_MAIL_CONFIG_MAPI_BACKEND))
39 #define E_MAIL_CONFIG_MAPI_BACKEND_GET_CLASS(obj) \
40 (G_TYPE_INSTANCE_GET_CLASS \
41 ((obj), E_TYPE_MAIL_CONFIG_MAPI_BACKEND, EMailConfigMapiBackendClass))
42
43 G_BEGIN_DECLS
44
45 typedef struct _EMailConfigMapiBackend EMailConfigMapiBackend;
46 typedef struct _EMailConfigMapiBackendClass EMailConfigMapiBackendClass;
47 typedef struct _EMailConfigMapiBackendPrivate EMailConfigMapiBackendPrivate;
48
49 struct _EMailConfigMapiBackend {
50 EMailConfigServiceBackend parent;
51 EMailConfigMapiBackendPrivate *priv;
52 };
53
54 struct _EMailConfigMapiBackendClass {
55 EMailConfigServiceBackendClass parent_class;
56 };
57
58 GType e_mail_config_mapi_backend_get_type (void) G_GNUC_CONST;
59 void e_mail_config_mapi_backend_type_register (GTypeModule *type_module);
60
61 G_END_DECLS
62
63 #endif /* E_MAIL_CONFIG_MAPI_BACKEND_H */