From: Chris Toshok Date: Mon, 4 Oct 2004 20:38:13 +0000 (+0000) Subject: add the prototype for the eds_module_* functions here, so modules can X-Git-Tag: upstream/3.7.4~8342 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30ecee25f92eddb3ffbd1617c31038294efa1617;p=platform%2Fupstream%2Fevolution-data-server.git add the prototype for the eds_module_* functions here, so modules can 2004-10-04 Chris Toshok * libedataserver/e-data-server-module.h: add the prototype for the eds_module_* functions here, so modules can include this file instead of writing their own prototypes in module sepcific headers. --- diff --git a/ChangeLog b/ChangeLog index 19426f3..105e8ae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-10-04 Chris Toshok + + * libedataserver/e-data-server-module.h: add the prototype for the + eds_module_* functions here, so modules can include this file + instead of writing their own prototypes in module sepcific + headers. + 2004-09-30 Chris Toshok * evolution-data-server.pc.in (extensiondir,privlibdir): add these diff --git a/libedataserver/e-data-server-module.h b/libedataserver/e-data-server-module.h index b8887a6..7c4f53f 100644 --- a/libedataserver/e-data-server-module.h +++ b/libedataserver/e-data-server-module.h @@ -35,6 +35,12 @@ void e_data_server_extension_list_free (GList *list); * without putting them in separate shared libraries */ void e_data_server_module_add_type (GType type); +/* The following three functions should exist in modules that are + written to be dynamically loaded */ +void eds_module_initialize (GTypeModule *module); +void eds_module_shutdown (void); +void eds_module_list_types (const GType **types, int *num_types); + G_END_DECLS #endif /* _E_DATA_SERVER_MODULE_H */