diff options
author | Stefan Schmidt <s.schmidt@samsung.com> | 2014-11-12 09:54:58 +0100 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2014-11-12 09:54:58 +0100 |
commit | 4c57c254e2db3fa1f3ffaa15d3e13eafd1eba41a (patch) | |
tree | 8012c583ea1dd33a3231179b6f6f8666f6862ae7 /src/lib/elocation/elocation.c | |
parent | 237fdd3db89d3a8736771bc0bc75ba43fb1404ac (diff) |
elocation: _EVENT_IN and _EVENT_OUT are internal events which means no EAPI
Diffstat (limited to '')
-rw-r--r-- | src/lib/elocation/elocation.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/elocation/elocation.c b/src/lib/elocation/elocation.c index 2478c51623..0722a56b93 100644 --- a/src/lib/elocation/elocation.c +++ b/src/lib/elocation/elocation.c | |||
@@ -40,8 +40,6 @@ static char nmea_sentence[256]; | |||
40 | int _elocation_log_dom = -1; | 40 | int _elocation_log_dom = -1; |
41 | 41 | ||
42 | /* Elocation ecore event types we provide to the application. */ | 42 | /* Elocation ecore event types we provide to the application. */ |
43 | EAPI int ELOCATION_EVENT_IN; | ||
44 | EAPI int ELOCATION_EVENT_OUT; | ||
45 | EAPI int ELOCATION_EVENT_STATUS; | 43 | EAPI int ELOCATION_EVENT_STATUS; |
46 | EAPI int ELOCATION_EVENT_POSITION; | 44 | EAPI int ELOCATION_EVENT_POSITION; |
47 | EAPI int ELOCATION_EVENT_ADDRESS; | 45 | EAPI int ELOCATION_EVENT_ADDRESS; |
@@ -53,6 +51,10 @@ EAPI int ELOCATION_EVENT_SATELLITE; | |||
53 | EAPI int ELOCATION_EVENT_POI; | 51 | EAPI int ELOCATION_EVENT_POI; |
54 | EAPI int ELOCATION_EVENT_META_READY; | 52 | EAPI int ELOCATION_EVENT_META_READY; |
55 | 53 | ||
54 | /* Internal events */ | ||
55 | int ELOCATION_EVENT_IN; | ||
56 | int ELOCATION_EVENT_OUT; | ||
57 | |||
56 | static void | 58 | static void |
57 | _dummy_free(void *user_data EINA_UNUSED, void *func_data EINA_UNUSED) | 59 | _dummy_free(void *user_data EINA_UNUSED, void *func_data EINA_UNUSED) |
58 | { | 60 | { |