stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=4c57c254e2db3fa1f3ffaa15d3e13eafd1eba41a
commit 4c57c254e2db3fa1f3ffaa15d3e13eafd1eba41a Author: Stefan Schmidt <[email protected]> Date: Wed Nov 12 09:54:58 2014 +0100 elocation: _EVENT_IN and _EVENT_OUT are internal events which means no EAPI --- src/lib/elocation/elocation.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/elocation/elocation.c b/src/lib/elocation/elocation.c index 2478c51..0722a56 100644 --- a/src/lib/elocation/elocation.c +++ b/src/lib/elocation/elocation.c @@ -40,8 +40,6 @@ static char nmea_sentence[256]; int _elocation_log_dom = -1; /* Elocation ecore event types we provide to the application. */ -EAPI int ELOCATION_EVENT_IN; -EAPI int ELOCATION_EVENT_OUT; EAPI int ELOCATION_EVENT_STATUS; EAPI int ELOCATION_EVENT_POSITION; EAPI int ELOCATION_EVENT_ADDRESS; @@ -53,6 +51,10 @@ EAPI int ELOCATION_EVENT_SATELLITE; EAPI int ELOCATION_EVENT_POI; EAPI int ELOCATION_EVENT_META_READY; +/* Internal events */ +int ELOCATION_EVENT_IN; +int ELOCATION_EVENT_OUT; + static void _dummy_free(void *user_data EINA_UNUSED, void *func_data EINA_UNUSED) { --
