1 /* 2 * e-mapi-config-ui-extension.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_MAPI_CONFIG_UI_EXTENSION_H 20 #define E_MAPI_CONFIG_UI_EXTENSION_H 21 22 #include <libebackend/libebackend.h> 23 24 G_BEGIN_DECLS 25 26 typedef struct _EMapiConfigUIExtension EMapiConfigUIExtension; 27 typedef struct _EMapiConfigUIExtensionClass EMapiConfigUIExtensionClass; 28 29 struct _EMapiConfigUIExtension 30 { 31 EExtension parent; 32 33 guint current_ui_id; 34 GHashTable *ui_definitions; 35 }; 36 37 struct _EMapiConfigUIExtensionClass 38 { 39 EExtensionClass parent; 40 }; 41 42 GType e_mapi_config_ui_extension_get_type (void); 43 void e_mapi_config_ui_extension_type_register (GTypeModule *type_module); 44 45 G_END_DECLS 46 47 #endif /* E_MAPI_CONFIG_UI_EXTENSION_H */