1 /*
2  * Copyright (C) 2016 Red Hat, Inc. (www.redhat.com)
3  *
4  * This library 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.
7  *
8  * This library 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 Lesser General Public License
11  * for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this library. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #include "evolution-config.h"
18 
19 #include "e-webkit-editor-extension.h"
20 
21 /* Module Entry Points */
22 void e_module_load (GTypeModule *type_module);
23 void e_module_unload (GTypeModule *type_module);
24 
25 G_MODULE_EXPORT void
e_module_load(GTypeModule * type_module)26 e_module_load (GTypeModule *type_module)
27 {
28 	e_webkit_editor_extension_type_register (type_module);
29 }
30 
31 G_MODULE_EXPORT void
e_module_unload(GTypeModule * type_module)32 e_module_unload (GTypeModule *type_module)
33 {
34 }
35