diff options
author | Tae-Hwan Kim <the81.kim@samsung.com> | 2014-07-22 14:14:34 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2014-07-22 14:36:44 +0900 |
commit | cfdaffb8cf65ab0a934de2efb513e66989b4bad6 (patch) | |
tree | a122a9a2cd620c4d8f0afc52073738e9a327d4b3 /src/lib | |
parent | a0a7af5caa1955c8368a35f7577dca0bd6266e8c (diff) |
map: Add missing legacy API into legacy header
Summary: @fix
Reviewers: raster
Reviewed By: raster
Differential Revision: https://phab.enlightenment.org/D1164
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/elm_map_legacy.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/lib/elm_map_legacy.h b/src/lib/elm_map_legacy.h index ca3458977..4c7aff27d 100644 --- a/src/lib/elm_map_legacy.h +++ b/src/lib/elm_map_legacy.h | |||
@@ -10,4 +10,22 @@ | |||
10 | */ | 10 | */ |
11 | EAPI Evas_Object *elm_map_add(Evas_Object *parent); | 11 | EAPI Evas_Object *elm_map_add(Evas_Object *parent); |
12 | 12 | ||
13 | #include "elm_map.eo.legacy.h" \ No newline at end of file | 13 | /** |
14 | * @internal | ||
15 | * | ||
16 | * @brief Requests a list of addresses corresponding to a given name. | ||
17 | * | ||
18 | * @since 1.8 | ||
19 | * | ||
20 | * @remarks This is used if you want to search the address from a name. | ||
21 | * | ||
22 | * @param obj The map object | ||
23 | * @param address The address | ||
24 | * @param name_cb The callback function | ||
25 | * @param data The user callback data | ||
26 | * | ||
27 | * @ingroup Map | ||
28 | */ | ||
29 | EAPI void elm_map_name_search(const Evas_Object *obj, const char *address, Elm_Map_Name_List_Cb name_cb, void *data); | ||
30 | |||
31 | #include "elm_map.eo.legacy.h" | ||