devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=7aef1fdb73c92c7a9c6fc78dff4c4ae3769bd6f2
commit 7aef1fdb73c92c7a9c6fc78dff4c4ae3769bd6f2 Author: Chris Michael <[email protected]> Date: Wed Jul 1 12:43:05 2015 -0400 xwayland: Use proper E_API for exporting module symbols Signed-off-by: Chris Michael <[email protected]> --- src/modules/xwayland/e_mod_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/xwayland/e_mod_main.c b/src/modules/xwayland/e_mod_main.c index 54afb76..363989b 100644 --- a/src/modules/xwayland/e_mod_main.c +++ b/src/modules/xwayland/e_mod_main.c @@ -270,9 +270,9 @@ _cb_signal_event(void *data EINA_UNUSED, int type EINA_UNUSED, void *event) } /* module functions */ -EAPI E_Module_Api e_modapi = { E_MODULE_API_VERSION, "XWayland" }; +E_API E_Module_Api e_modapi = { E_MODULE_API_VERSION, "XWayland" }; -EAPI void * +E_API void * e_modapi_init(E_Module *m) { char disp[8]; @@ -351,7 +351,7 @@ lock: return m; } -EAPI int +E_API int e_modapi_shutdown(E_Module *m EINA_UNUSED) { char path[256]; --
