Change deprecated to 8.0 56/293856/5 accepted/tizen_8.0_unified tizen_8.0 accepted/tizen/8.0/unified/20231005.092721 accepted/tizen/unified/20230705.131035 tizen_8.0_m2_release
authorAbhimanyu Swami <abhimanyu1.s@samsung.com>
Wed, 7 Jun 2023 06:47:15 +0000 (12:17 +0530)
committerAbhimanyu Swami <abhimanyu1.s@samsung.com>
Tue, 27 Jun 2023 07:35:18 +0000 (13:05 +0530)
Change-Id: Ic19583bf2691219b70c93ab4d48cd045d9f4a115
Signed-off-by: Abhimanyu Swami <abhimanyu1.s@samsung.com>
52 files changed:
doc/maps_service_doc.h
include/maps_address.h
include/maps_area.h
include/maps_coordinates.h
include/maps_error.h
include/maps_extra_types.h
include/maps_place.h
include/maps_place_attribute.h
include/maps_place_attribute_plugin.h
include/maps_place_category.h
include/maps_place_contact.h
include/maps_place_contact_plugin.h
include/maps_place_editorial.h
include/maps_place_editorial_plugin.h
include/maps_place_filter.h
include/maps_place_image.h
include/maps_place_image_plugin.h
include/maps_place_link_object.h
include/maps_place_link_object_plugin.h
include/maps_place_media.h
include/maps_place_media_plugin.h
include/maps_place_plugin.h
include/maps_place_rating.h
include/maps_place_rating_plugin.h
include/maps_place_review.h
include/maps_place_review_plugin.h
include/maps_place_url.h
include/maps_place_url_plugin.h
include/maps_plugin.h
include/maps_plugin_info.h
include/maps_plugin_types.h
include/maps_preference.h
include/maps_route.h
include/maps_route_maneuver.h
include/maps_route_maneuver_plugin.h
include/maps_route_plugin.h
include/maps_route_segment.h
include/maps_route_segment_plugin.h
include/maps_service.h
include/maps_service_internal.h
include/maps_types.h
include/maps_view.h
include/maps_view_event_data.h
include/maps_view_object.h
include/maps_view_object_plugin.h
include/maps_view_plugin.h
include/maps_view_snapshot.h
src/api/maps_condition.h
src/api/maps_place_private.h
src/api/maps_route_private.h
src/api/maps_route_segment_private.h
src/maps_util.h

index 9cc411b..b03a270 100644 (file)
@@ -21,7 +21,7 @@
 
 /**
  * @ingroup CAPI_LOCATION_FRAMEWORK
- * @defgroup CAPI_MAPS_SERVICE_MODULE Maps Service
+ * @defgroup CAPI_MAPS_SERVICE_MODULE Maps Service (Deprecated)
  * @brief The Maps Service provides an Application Developer with Maps Service APIs.
  * @section CAPI_MAPS_SERVICE_MODULE_HEADER Required Header
  * \#include <maps_service.h>
index 8d1e90f..33c0560 100644 (file)
@@ -18,9 +18,9 @@
 #ifndef __MAPS_ADDRESS_H__
 #define __MAPS_ADDRESS_H__
 
+#include <tizen.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_ADDRESS_MODULE Address
  * @file maps_address.h
@@ -37,7 +37,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The address handle.
  * @details The address handle can be obtained via calling of maps_address_create().
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -46,7 +46,7 @@ typedef void *maps_address_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The address list handle.
  * @details The address list handle can be obtained via calling of maps_address_list_create().
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -58,7 +58,7 @@ typedef void *maps_address_list_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new address handle.
  * @details This function creates a new address handle and allocates all needed resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -74,11 +74,11 @@ typedef void *maps_address_list_h;
  * @see maps_address_destroy()
  * @see maps_address_clone()
  */
-int maps_address_create(maps_address_h *address);
+int maps_address_create(maps_address_h *address) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the address handle and releases all its resources.
  * @details This function destroys the address handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -92,11 +92,11 @@ int maps_address_create(maps_address_h *address);
  * @see maps_address_create()
  * @see maps_address_clone()
  */
-int maps_address_destroy(maps_address_h address);
+int maps_address_destroy(maps_address_h address) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the address handle.
  * @details This function clones the address handle @a origin and all its resources.\n
  *          Address handle @a origin may be created using maps_address_create().
@@ -114,14 +114,14 @@ int maps_address_destroy(maps_address_h address);
  * @see maps_address_create()
  * @see maps_address_destroy()
  */
-int maps_address_clone(const maps_address_h origin, maps_address_h *cloned);
+int maps_address_clone(const maps_address_h origin, maps_address_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the building number of the address handle.
  * @details This function gets the building number of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -137,11 +137,11 @@ int maps_address_clone(const maps_address_h origin, maps_address_h *cloned);
  * @see maps_address_set_building_number()
  * @see maps_address_create()
  */
-int maps_address_get_building_number(const maps_address_h address, char **building_number);
+int maps_address_get_building_number(const maps_address_h address, char **building_number) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the street name of the address handle.
  * @details This function gets the street name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -157,11 +157,11 @@ int maps_address_get_building_number(const maps_address_h address, char **buildi
  * @see maps_address_set_street()
  * @see maps_address_create()
  */
-int maps_address_get_street(const maps_address_h address, char **street);
+int maps_address_get_street(const maps_address_h address, char **street) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the district name of the address handle.
  * @details This function gets the district name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -181,7 +181,7 @@ int maps_address_get_district(const maps_address_h address, char **district);
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the city name of the address handle.
  * @details This function gets the city name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -197,11 +197,11 @@ int maps_address_get_district(const maps_address_h address, char **district);
  * @see maps_address_set_city()
  * @see maps_address_create()
  */
-int maps_address_get_city(const maps_address_h address, char **city);
+int maps_address_get_city(const maps_address_h address, char **city) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the state name of the address handle.
  * @details This function gets the state name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -217,11 +217,11 @@ int maps_address_get_city(const maps_address_h address, char **city);
  * @see maps_address_set_state()
  * @see maps_address_create()
  */
-int maps_address_get_state(const maps_address_h address, char **state);
+int maps_address_get_state(const maps_address_h address, char **state) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the country name of the address handle.
  * @details This function gets the country name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -237,11 +237,11 @@ int maps_address_get_state(const maps_address_h address, char **state);
  * @see maps_address_set_country()
  * @see maps_address_create()
  */
-int maps_address_get_country(const maps_address_h address, char **country);
+int maps_address_get_country(const maps_address_h address, char **country) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the country code of the address handle.
  * @details This function gets the country code of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -257,11 +257,11 @@ int maps_address_get_country(const maps_address_h address, char **country);
  * @see maps_address_set_country_code()
  * @see maps_address_create()
  */
-int maps_address_get_country_code(const maps_address_h address, char **country_code);
+int maps_address_get_country_code(const maps_address_h address, char **country_code) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the county of the address handle.
  * @details This function gets the county of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -277,11 +277,11 @@ int maps_address_get_country_code(const maps_address_h address, char **country_c
  * @see maps_address_set_county()
  * @see maps_address_create()
  */
-int maps_address_get_county(const maps_address_h address, char **county);
+int maps_address_get_county(const maps_address_h address, char **county) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the postal code of the address handle.
  * @details This function gets the postal code of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -297,11 +297,11 @@ int maps_address_get_county(const maps_address_h address, char **county);
  * @see maps_address_set_postal_code()
  * @see maps_address_create()
  */
-int maps_address_get_postal_code(const maps_address_h address, char **postal_code);
+int maps_address_get_postal_code(const maps_address_h address, char **postal_code) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the free text of the address handle.
  * @details This function gets the free text of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -317,14 +317,14 @@ int maps_address_get_postal_code(const maps_address_h address, char **postal_cod
  * @see maps_address_set_freetext()
  * @see maps_address_create()
  */
-int maps_address_get_freetext(const maps_address_h address, char **freetext);
+int maps_address_get_freetext(const maps_address_h address, char **freetext) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the building number of the address handle.
  * @details This function sets the building number of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -338,11 +338,11 @@ int maps_address_get_freetext(const maps_address_h address, char **freetext);
  * @pre @a address is created using maps_address_create().
  * @see maps_address_create()
  */
-int maps_address_set_building_number(maps_address_h address, const char *building_number);
+int maps_address_set_building_number(maps_address_h address, const char *building_number) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the street name of the address handle.
  * @details This function sets the street name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -357,11 +357,11 @@ int maps_address_set_building_number(maps_address_h address, const char *buildin
  * @see maps_address_create()
  * @see maps_address_get_street()
  */
-int maps_address_set_street(maps_address_h address, const char *street);
+int maps_address_set_street(maps_address_h address, const char *street) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the district name of the address handle.
  * @details This function sets the district name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -376,11 +376,11 @@ int maps_address_set_street(maps_address_h address, const char *street);
  * @see maps_address_create()
  * @see maps_address_get_district()
  */
-int maps_address_set_district(maps_address_h address, const char *district);
+int maps_address_set_district(maps_address_h address, const char *district) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the city name of the address handle.
  * @details This function sets the city name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -395,11 +395,11 @@ int maps_address_set_district(maps_address_h address, const char *district);
  * @see maps_address_create()
  * @see maps_address_get_city()
  */
-int maps_address_set_city(maps_address_h address, const char *city);
+int maps_address_set_city(maps_address_h address, const char *city) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the state name of the address handle.
  * @details This function sets the state name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -414,11 +414,11 @@ int maps_address_set_city(maps_address_h address, const char *city);
  * @see maps_address_create()
  * @see maps_address_get_state()
  */
-int maps_address_set_state(maps_address_h address, const char *state);
+int maps_address_set_state(maps_address_h address, const char *state) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the country name of the address handle.
  * @details This function sets the country name of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -433,11 +433,11 @@ int maps_address_set_state(maps_address_h address, const char *state);
  * @see maps_address_create()
  * @see maps_address_get_country()
  */
-int maps_address_set_country(maps_address_h address, const char *country);
+int maps_address_set_country(maps_address_h address, const char *country) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the country code of the address handle.
  * @details This function sets the country code of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -452,11 +452,11 @@ int maps_address_set_country(maps_address_h address, const char *country);
  * @see maps_address_create()
  * @see maps_address_get_country_code()
  */
-int maps_address_set_country_code(maps_address_h address, const char *country_code);
+int maps_address_set_country_code(maps_address_h address, const char *country_code) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the county of the address handle.
  * @details This function sets the county of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -471,11 +471,11 @@ int maps_address_set_country_code(maps_address_h address, const char *country_co
  * @see maps_address_create()
  * @see maps_address_get_county()
  */
-int maps_address_set_county(maps_address_h address, const char *county);
+int maps_address_set_county(maps_address_h address, const char *county) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the postal code of the address handle.
  * @details This function sets the postal code of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -490,11 +490,11 @@ int maps_address_set_county(maps_address_h address, const char *county);
  * @see maps_address_create()
  * @see maps_address_get_postal_code()
  */
-int maps_address_set_postal_code(maps_address_h address, const char *postal_code);
+int maps_address_set_postal_code(maps_address_h address, const char *postal_code) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the free text of the address handle.
  * @details This function sets the free text of the address handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -509,11 +509,11 @@ int maps_address_set_postal_code(maps_address_h address, const char *postal_code
  * @see maps_address_create()
  * @see maps_address_get_freetext()
  */
-int maps_address_set_freetext(maps_address_h address, const char *freetext);
+int maps_address_set_freetext(maps_address_h address, const char *freetext) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates an address list having a set of addresses.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[out] address_list The address list handle
@@ -525,11 +525,11 @@ int maps_address_set_freetext(maps_address_h address, const char *freetext);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_address_list_destroy()
  */
-int maps_address_list_create(maps_address_list_h *address_list);
+int maps_address_list_create(maps_address_list_h *address_list) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Appends an address to an address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @remarks Don't release @a address before removed from the list using maps_address_list_remove().
@@ -545,11 +545,11 @@ int maps_address_list_create(maps_address_list_h *address_list);
  * @see maps_address_list_destroy()
  * @see maps_address_create()
  */
-int maps_address_list_append(maps_address_list_h address_list, maps_address_h address);
+int maps_address_list_append(maps_address_list_h address_list, maps_address_h address) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Removes an address from an address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @remarks @a address is just excepted from the list.\n
@@ -565,11 +565,11 @@ int maps_address_list_append(maps_address_list_h address_list, maps_address_h ad
  * @see maps_address_list_destroy()
  * @see maps_address_destroy()
  */
-int maps_address_list_remove(maps_address_list_h address_list, maps_address_h address);
+int maps_address_list_remove(maps_address_list_h address_list, maps_address_h address) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the number of elements in an address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] address_list The address list handle
@@ -582,11 +582,11 @@ int maps_address_list_remove(maps_address_list_h address_list, maps_address_h ad
  * @see maps_address_list_create()
  * @see maps_address_list_destroy()
  */
-int maps_address_list_get_length(maps_address_list_h address_list, int *length);
+int maps_address_list_get_length(maps_address_list_h address_list, int *length) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called iteratively to get address information.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] index The index of iteration
@@ -597,11 +597,11 @@ int maps_address_list_get_length(maps_address_list_h address_list, int *length);
  * @see maps_address_list_foreach()
  * @see maps_address_list_destroy()
  */
-typedef bool (*maps_address_cb)(int index, maps_address_h address, void *user_data);
+typedef bool (*maps_address_cb)(int index, maps_address_h address, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all addresses by invoking a specific callback for each address of address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] address_list The address list handle
@@ -616,11 +616,11 @@ typedef bool (*maps_address_cb)(int index, maps_address_h address, void *user_da
  * @see maps_address_list_destroy()
  * @see maps_address_list_get_length()
  */
-int maps_address_list_foreach(maps_address_list_h address_list, maps_address_cb callback, void *user_data);
+int maps_address_list_foreach(maps_address_list_h address_list, maps_address_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Frees all of the memory used by an address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] address_list The address list handle
@@ -631,7 +631,7 @@ int maps_address_list_foreach(maps_address_list_h address_list, maps_address_cb
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_address_list_create()
  */
-int maps_address_list_destroy(maps_address_list_h address_list);
+int maps_address_list_destroy(maps_address_list_h address_list) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index f5e6206..96c9d66 100644 (file)
 #ifndef __MAPS_GEOAREA_H__
 #define __MAPS_GEOAREA_H__
 
-
+#include <tizen.h>
 #include <maps_coordinates.h>
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_GEOAREA_MODULE Area
  * @file maps_area.h
@@ -40,7 +39,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Handle of the Geographical Area.
  * @details The Geographical Area handle can be obtained via call of maps_area_create_rectangle() or maps_area_create_circle().\n
  *          To release the handle use maps_area_destroy().\n
@@ -55,7 +54,7 @@ typedef void *maps_area_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for supported types of the Geographical Area.
  * @details This enumeration represents allowed geographical type of Geographical Area: rectangular and circular.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -68,7 +67,7 @@ typedef enum {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Structure of the rectangular Geographical Area.
  * @details This structure represents a rectangular Geographical Area, specified with left top and right bottom coordinates.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -81,7 +80,7 @@ typedef struct _maps_area_rectangle_s {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Structure of the circular Geographical Area, specified with a center coordinates and a radius.
  * @details This structure represents a circular Geographical Area.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -94,7 +93,7 @@ typedef struct _maps_area_circle_s {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Structure of the Geographical Area.
  * @details This structure represents a Geographical Area, specified with a type, circular or rectangular, and appropriate coordinates and radius.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -111,7 +110,7 @@ typedef struct _maps_area_s {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a rectangular type of new Geographical Area with a specified information.
  * @details This function creates a rectangular type of new #maps_area_h with a specified left top and right bottom coordinates.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -134,11 +133,11 @@ typedef struct _maps_area_s {
  * @see maps_coordinates_create()
  * @see maps_coordinates_destroy()
  */
-int maps_area_create_rectangle(const maps_coordinates_h top_left, const maps_coordinates_h bottom_right, maps_area_h *area);
+int maps_area_create_rectangle(const maps_coordinates_h top_left, const maps_coordinates_h bottom_right, maps_area_h *area) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a circular type of new Geographical Area with a specified information.
  * @details This function creates a circular type of new #maps_area_h Geographical Area with a specified center coordinates and a radius.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -164,11 +163,11 @@ int maps_area_create_rectangle(const maps_coordinates_h top_left, const maps_coo
  * @see maps_preference_get_distance_unit()
  * @see maps_preference_set_distance_unit()
  */
-int maps_area_create_circle(const maps_coordinates_h center, const double radius, maps_area_h *area);
+int maps_area_create_circle(const maps_coordinates_h center, const double radius, maps_area_h *area) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the Geographical Area and releases all its resources.
  * @details This function destroys the Geographical Area #maps_area_h and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -183,11 +182,11 @@ int maps_area_create_circle(const maps_coordinates_h center, const double radius
  * @see maps_area_create_rectangle()
  * @see maps_area_create_circle()
  */
-int maps_area_destroy(maps_area_h area);
+int maps_area_destroy(maps_area_h area) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the Geographical Area.
  * @details This function makes a clone of the @a origin Geographical Area of type #maps_area_h.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -205,7 +204,7 @@ int maps_area_destroy(maps_area_h area);
  * @see maps_area_create_circle()
  * @see maps_area_destroy()
  */
-int maps_area_clone(const maps_area_h origin, maps_area_h *cloned);
+int maps_area_clone(const maps_area_h origin, maps_area_h *cloned) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 4f46b34..a85b1db 100644 (file)
 #ifndef __MAPS_COORDINATES_H__
 #define __MAPS_COORDINATES_H__
 
-
+#include <tizen.h>
 #include <tizen_type.h>
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_COORDS_MODULE Coordinates
  * @file maps_coordinates.h
@@ -40,7 +39,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Handle of the Geographical Coordinates.
  * @details The Geographical Coordinates handle can be obtained via call of maps_coordinates_create().
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -51,7 +50,7 @@ typedef void *maps_coordinates_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Structure of the Geographical Coordinates.
  * @details This structure represents a Geographical Coordinates, specified with a @a latitude and @a longitude values.\n
  *          The @a latitude must be in range of [-90.0, 90.0].\n
@@ -69,7 +68,7 @@ typedef struct _maps_coordinates_s {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The coordinates list handle.
  * @details The coordinates list handle can be obtained via calling of maps_coordinates_list_create().
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -81,7 +80,7 @@ typedef void *maps_coordinates_list_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new instance of Geographical Coordinates and initiates a handle with it.
  * @details This function creates @a coordinates, a new instance of Geographical Coordinates of type #maps_coordinates_h with a specified @a latitude and @a longitude.\n
  *          New handle is assigned with this instance.
@@ -100,11 +99,11 @@ typedef void *maps_coordinates_list_h;
  * @see maps_coordinates_clone()
  * @see maps_coordinates_destroy()
  */
-int maps_coordinates_create(const double latitude, const double longitude, maps_coordinates_h *coordinates);
+int maps_coordinates_create(const double latitude, const double longitude, maps_coordinates_h *coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the Geographical Coordinates and releases all its resources.
  * @details This function destroys the Geographical Coordinates #maps_coordinates_h and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -118,11 +117,11 @@ int maps_coordinates_create(const double latitude, const double longitude, maps_
  * @see maps_coordinates_create()
  * @see maps_coordinates_clone()
  */
-int maps_coordinates_destroy(maps_coordinates_h coordinates);
+int maps_coordinates_destroy(maps_coordinates_h coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the Geographical Coordinates.
  * @details This function makes a clone of the @a origin Geographical Coordinates of type #maps_coordinates_h.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -139,14 +138,14 @@ int maps_coordinates_destroy(maps_coordinates_h coordinates);
  * @see maps_coordinates_create()
  * @see maps_coordinates_destroy()
  */
-int maps_coordinates_clone(const maps_coordinates_h origin, maps_coordinates_h *cloned);
+int maps_coordinates_clone(const maps_coordinates_h origin, maps_coordinates_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the latitude of the coordinates.
  * @details This function gets the @a latitude value of the coordinates handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -161,11 +160,11 @@ int maps_coordinates_clone(const maps_coordinates_h origin, maps_coordinates_h *
  * @see maps_coordinates_create()
  * @see maps_coordinates_set_latitude()
  */
-int maps_coordinates_get_latitude(const maps_coordinates_h coordinates, double *latitude);
+int maps_coordinates_get_latitude(const maps_coordinates_h coordinates, double *latitude) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the longitude of the coordinates.
  * @details This function gets the @a longitude value of the coordinates handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -180,11 +179,11 @@ int maps_coordinates_get_latitude(const maps_coordinates_h coordinates, double *
  * @see maps_coordinates_create()
  * @see maps_coordinates_set_longitude()
  */
-int maps_coordinates_get_longitude(const maps_coordinates_h coordinates, double *longitude);
+int maps_coordinates_get_longitude(const maps_coordinates_h coordinates, double *longitude) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the latitude and longitude of the coordinates.
  * @details This function gets the @a longitude and @a longitude value of the coordinates handle.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -200,14 +199,14 @@ int maps_coordinates_get_longitude(const maps_coordinates_h coordinates, double
  * @see maps_coordinates_create()
  * @see maps_coordinates_set_latitude_longitude()
  */
-int maps_coordinates_get_latitude_longitude(const maps_coordinates_h coordinates, double *latitude, double *longitude);
+int maps_coordinates_get_latitude_longitude(const maps_coordinates_h coordinates, double *latitude, double *longitude) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the latitude of the coordinates.
  * @details This function sets the @a latitude value of the coordinates handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -222,11 +221,11 @@ int maps_coordinates_get_latitude_longitude(const maps_coordinates_h coordinates
  * @see maps_coordinates_create()
  * @see maps_coordinates_get_latitude()
  */
-int maps_coordinates_set_latitude(maps_coordinates_h coordinates, const double latitude);
+int maps_coordinates_set_latitude(maps_coordinates_h coordinates, const double latitude) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the longitude of the coordinates.
  * @details This function sets the @a longitude value of the coordinates handle.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -241,11 +240,11 @@ int maps_coordinates_set_latitude(maps_coordinates_h coordinates, const double l
  * @see maps_coordinates_create()
  * @see maps_coordinates_get_longitude()
  */
-int maps_coordinates_set_longitude(maps_coordinates_h coordinates, const double longitude);
+int maps_coordinates_set_longitude(maps_coordinates_h coordinates, const double longitude) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the latitude and longitude of the coordinates.
  * @details This function sets the @a latitude and @a latitude value of the coordinates handle.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -261,11 +260,11 @@ int maps_coordinates_set_longitude(maps_coordinates_h coordinates, const double
  * @see maps_coordinates_create()
  * @see maps_coordinates_get_latitude_longitude()
  */
-int maps_coordinates_set_latitude_longitude(maps_coordinates_h coordinates, const double latitude, const double longitude);
+int maps_coordinates_set_latitude_longitude(maps_coordinates_h coordinates, const double latitude, const double longitude) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a coordinates list having a set of coordinates.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[out] coordinates_list The coordinates list handle
@@ -277,11 +276,11 @@ int maps_coordinates_set_latitude_longitude(maps_coordinates_h coordinates, cons
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_coordinates_list_destroy()
  */
-int maps_coordinates_list_create(maps_coordinates_list_h *coordinates_list);
+int maps_coordinates_list_create(maps_coordinates_list_h *coordinates_list) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Frees all of the memory used by a coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] coordinates_list The coordinates list handle
@@ -290,11 +289,11 @@ int maps_coordinates_list_create(maps_coordinates_list_h *coordinates_list);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_coordinates_list_create()
  */
-int maps_coordinates_list_destroy(maps_coordinates_list_h coordinates_list);
+int maps_coordinates_list_destroy(maps_coordinates_list_h coordinates_list) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Appends a coordinates to a coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] coordinates_list The coordinates list handle
@@ -308,11 +307,11 @@ int maps_coordinates_list_destroy(maps_coordinates_list_h coordinates_list);
  * @see maps_coordinates_list_create()
  * @see maps_coordinates_list_destroy()
  */
-int maps_coordinates_list_append(maps_coordinates_list_h coordinates_list, maps_coordinates_h coordinates);
+int maps_coordinates_list_append(maps_coordinates_list_h coordinates_list, maps_coordinates_h coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Removes a coordinates from a coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] coordinates_list The coordinates list handle
@@ -325,11 +324,11 @@ int maps_coordinates_list_append(maps_coordinates_list_h coordinates_list, maps_
  * @see maps_coordinates_list_create()
  * @see maps_coordinates_list_destroy()
  */
-int maps_coordinates_list_remove(maps_coordinates_list_h coordinates_list, maps_coordinates_h coordinates);
+int maps_coordinates_list_remove(maps_coordinates_list_h coordinates_list, maps_coordinates_h coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the number of elements in a coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] coordinates_list The coordinates list handle
@@ -342,11 +341,11 @@ int maps_coordinates_list_remove(maps_coordinates_list_h coordinates_list, maps_
  * @see maps_coordinates_list_create()
  * @see maps_coordinates_list_destroy()
  */
-int maps_coordinates_list_get_length(maps_coordinates_list_h coordinates_list, int *length);
+int maps_coordinates_list_get_length(maps_coordinates_list_h coordinates_list, int *length) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called iteratively to get a coordinates information.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] index The index of iteration
@@ -355,11 +354,11 @@ int maps_coordinates_list_get_length(maps_coordinates_list_h coordinates_list, i
  * @return @c true to continue with the next iteration of the loop,\n
  *         @c false to break out of the loop
  */
-typedef bool (*maps_coordinates_cb) (int index, maps_coordinates_h coordinates, void *user_data);
+typedef bool (*maps_coordinates_cb) (int index, maps_coordinates_h coordinates, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all coordinates by invoking a specific callback for each coordinates of coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] coordinates_list The coordinates list handle
@@ -372,7 +371,7 @@ typedef bool (*maps_coordinates_cb) (int index, maps_coordinates_h coordinates,
  * @see maps_coordinates_list_destroy()
  * @see maps_coordinates_list_get_length()
  */
-int maps_coordinates_list_foreach(maps_coordinates_list_h coordinates_list, maps_coordinates_cb callback, void *user_data);
+int maps_coordinates_list_foreach(maps_coordinates_list_h coordinates_list, maps_coordinates_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 8f2c4b6..5beac96 100644 (file)
 #ifndef __MAPS_ERROR_H__
 #define __MAPS_ERROR_H__
 
-
 #include <tizen_type.h>
 #include <tizen_error.h>
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @file maps_error.h
  * @brief This file contains the list of errors of Maps API.
@@ -40,7 +38,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for error codes for Maps Service and Plug-ins.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
index 975dc6f..a3f7408 100644 (file)
 #ifndef __MAPS_SERVICE_API_EXTRA_TYPES_H__
 #define __MAPS_SERVICE_API_EXTRA_TYPES_H__
 
+#include <tizen.h>
 #include <tizen_type.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_AND_PROVIDERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE Container Data Types
  *
@@ -38,7 +38,6 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_ITEM_LIST Maps Item Lists
  *
@@ -51,7 +50,7 @@ extern "C" {
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Item List handle.
  * @details The Item List handle can be obtained via call of
  * maps_item_list_create().
@@ -69,7 +68,7 @@ extern "C" {
 typedef void *maps_item_list_h;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new list of item pointers.
  * @details This function creates a new instance of item pointer list, associate
  * a new handle with it and allocates all needed resources.
@@ -87,10 +86,10 @@ typedef void *maps_item_list_h;
  * @see maps_item_list_destroy()
  * @see maps_item_list_clone()
  */
-int maps_item_list_create(maps_item_list_h *list);
+int maps_item_list_create(maps_item_list_h *list) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the list handle and releases all its resources.
  * @details This function destroys the list handle and releases all its
  * resources.
@@ -107,10 +106,10 @@ int maps_item_list_create(maps_item_list_h *list);
  * @see maps_item_list_create()
  * @see maps_item_list_clone()
  */
-int maps_item_list_destroy(maps_item_list_h list);
+int maps_item_list_destroy(maps_item_list_h list) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clone function, making a copy of a list item.
  * @details This function is called once for each item of the given list while
  * the list is being cloned during the maps_item_list_clone() procedure.
@@ -129,10 +128,10 @@ int maps_item_list_destroy(maps_item_list_h list);
  *
  * @see maps_item_list_clone()
  */
-typedef int (*maps_item_list_clone_cb) (void *origin, void **cloned);
+typedef int (*maps_item_list_clone_cb) (void *origin, void **cloned) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the list of item pointers.
  * @details This function clones the list of item pointers @a origin and all its
  * resources.
@@ -156,10 +155,10 @@ typedef int (*maps_item_list_clone_cb) (void *origin, void **cloned);
  * @see maps_item_list_create()
  * @see maps_item_list_destroy()
  */
-int maps_item_list_clone(const maps_item_list_h origin, maps_item_list_clone_cb clone_func, maps_item_list_h *cloned);
+int maps_item_list_clone(const maps_item_list_h origin, maps_item_list_clone_cb clone_func, maps_item_list_h *cloned) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Appends an item to the list.
  * @details This function appends an item @a data to the list of item pointers
  * @a list.
@@ -180,10 +179,10 @@ int maps_item_list_clone(const maps_item_list_h origin, maps_item_list_clone_cb
  * @see maps_item_list_remove_all()
  * @see maps_item_list_create()
  */
-int maps_item_list_append(maps_item_list_h list, const void *data, maps_item_list_clone_cb clone_func);
+int maps_item_list_append(maps_item_list_h list, const void *data, maps_item_list_clone_cb clone_func) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called once for each item while iterating through the given
  * list.
  * @details This function is called once for each item of the given list while
@@ -204,10 +203,10 @@ int maps_item_list_append(maps_item_list_h list, const void *data, maps_item_lis
  *
  * @see maps_item_list_foreach()
  */
-typedef bool(*maps_item_list_foreach_cb) (int index, int total, void *data, void *user_data);
+typedef bool(*maps_item_list_foreach_cb) (int index, int total, void *data, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the items of the specified list.
  * @details This function delivers items of a specified list via
  * maps_item_list_foreach_cb() callback.
@@ -233,10 +232,10 @@ typedef bool(*maps_item_list_foreach_cb) (int index, int total, void *data, void
  * @see maps_item_list_append()
  * @see maps_service_create()
  */
-int maps_item_list_foreach(maps_item_list_h list, maps_item_list_clone_cb clone_func, maps_item_list_foreach_cb callback, void *user_data);
+int maps_item_list_foreach(maps_item_list_h list, maps_item_list_clone_cb clone_func, maps_item_list_foreach_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Free function, destroying a list item.
  * @details This function is called once for each item of the given list while
  * the list is being destroyed
@@ -254,10 +253,10 @@ int maps_item_list_foreach(maps_item_list_h list, maps_item_list_clone_cb clone_
  *
  * @see maps_item_list_remove_all()
  */
-typedef int (*maps_item_list_free_cb) (void *data);
+typedef int (*maps_item_list_free_cb) (void *data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Removes and destroys list item.
  * @details This function removes the given items from the @a list and releases
  * resources, assigned with it.
@@ -281,10 +280,10 @@ typedef int (*maps_item_list_free_cb) (void *data);
  * @see maps_item_list_create()
  * @see maps_item_list_remove_all()
  */
-int maps_item_list_remove(maps_item_list_h list, void *item, maps_item_list_free_cb free_func);
+int maps_item_list_remove(maps_item_list_h list, void *item, maps_item_list_free_cb free_func) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Removes and destroys all list items.
  * @details This function removes all items of the @a list and releases
  * resources, assigned with them.
@@ -306,10 +305,10 @@ int maps_item_list_remove(maps_item_list_h list, void *item, maps_item_list_free
  * @see maps_item_list_free_cb()
  * @see maps_item_list_create()
  */
-int maps_item_list_remove_all(maps_item_list_h list, maps_item_list_free_cb free_func);
+int maps_item_list_remove_all(maps_item_list_h list, maps_item_list_free_cb free_func) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called once for each item while iterating through the given list.
  * @details This function is called once for each item of the given list while
  * the list is being iterated during the maps_item_list_foreach_noclone() procedure.
@@ -324,10 +323,10 @@ int maps_item_list_remove_all(maps_item_list_h list, maps_item_list_free_cb free
  *
  * @see maps_item_list_foreach_noclone()
  */
-typedef bool(*maps_item_list_foreach_noclone_cb) (int index, void *data, void *user_data);
+typedef bool(*maps_item_list_foreach_noclone_cb) (int index, void *data, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the items of the specified list.
  * @details This function delivers items of a specified list via maps_item_list_foreach_noclone_cb() callback.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -351,10 +350,10 @@ typedef bool(*maps_item_list_foreach_noclone_cb) (int index, void *data, void *u
  * @see maps_item_list_foreach()
  * @see maps_service_create()
  */
-int maps_item_list_foreach_noclone(maps_item_list_h list, maps_item_list_foreach_noclone_cb callback, void *user_data);
+int maps_item_list_foreach_noclone(maps_item_list_h list, maps_item_list_foreach_noclone_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the number of elements in the specified list.
  * @since_tizen 3.0
  *
@@ -369,7 +368,7 @@ int maps_item_list_foreach_noclone(maps_item_list_h list, maps_item_list_foreach
  * @see maps_item_list_create()
  * @see maps_item_list_append()
  */
-int maps_item_list_get_length(maps_item_list_h list, int *length);
+int maps_item_list_get_length(maps_item_list_h list, int *length) TIZEN_DEPRECATED_API;
 
 /**
  * @}
@@ -378,7 +377,6 @@ int maps_item_list_get_length(maps_item_list_h list, int *length);
 /*----------------------------------------------------------------------------*/
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_STRING_HASHTABLE Maps String Hash Tables
  *
@@ -391,7 +389,7 @@ int maps_item_list_get_length(maps_item_list_h list, int *length);
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The handle of Hash Table of strings.
  * @details The handle of Hash Table of strings can be obtained via call of
  * maps_string_hashtable_create().
@@ -415,7 +413,7 @@ int maps_item_list_get_length(maps_item_list_h list, int *length);
 typedef void *maps_string_hashtable_h;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new Hash Table of strings.
  * @details This function creates a new instance of Hash Table of strings,
  * associate a new handle with it and allocates all needed resources.
@@ -433,10 +431,10 @@ typedef void *maps_string_hashtable_h;
  * @see maps_string_hashtable_clone()
  * @see maps_string_hashtable_destroy()
  */
-int maps_string_hashtable_create(maps_string_hashtable_h *table);
+int maps_string_hashtable_create(maps_string_hashtable_h *table) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the Hash Table of strings and releases all its
  * resources.
  * @details This function destroys the Hash Table handle and releases all its
@@ -455,10 +453,10 @@ int maps_string_hashtable_create(maps_string_hashtable_h *table);
  * @see maps_string_hashtable_create()
  * @see maps_string_hashtable_clone()
  */
-int maps_string_hashtable_destroy(maps_string_hashtable_h table);
+int maps_string_hashtable_destroy(maps_string_hashtable_h table) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the Hash Table of strings.
  * @details This function clones the Hash Table of strings @a origin and all its
  * resources.
@@ -480,10 +478,10 @@ int maps_string_hashtable_destroy(maps_string_hashtable_h table);
  * @see maps_string_hashtable_create()
  * @see maps_string_hashtable_destroy()
  */
-int maps_string_hashtable_clone(const maps_string_hashtable_h origin, maps_string_hashtable_h *cloned);
+int maps_string_hashtable_clone(const maps_string_hashtable_h origin, maps_string_hashtable_h *cloned) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the association between string key and value in the table.
  * @details This function sets the association between string key and value in
  * the Hash Table.
@@ -503,10 +501,10 @@ int maps_string_hashtable_clone(const maps_string_hashtable_h origin, maps_strin
  * @see maps_string_hashtable_remove()
  * @see maps_string_hashtable_create()
  */
-int maps_string_hashtable_set(maps_string_hashtable_h table, const char *key, const char *value);
+int maps_string_hashtable_set(maps_string_hashtable_h table, const char *key, const char *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the string value associated with a string key in the table.
  * @details This function gets the string value associated with a string key in
  * the Hash Table.
@@ -527,10 +525,10 @@ int maps_string_hashtable_set(maps_string_hashtable_h table, const char *key, co
  * @see maps_string_hashtable_remove()
  * @see maps_string_hashtable_create()
  */
-int maps_string_hashtable_get(maps_string_hashtable_h table, const char *key, char **value);
+int maps_string_hashtable_get(maps_string_hashtable_h table, const char *key, char **value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Removes the key-value pair from the table.
  * @details This function removes the key-value pair from the Hash Table.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -549,10 +547,10 @@ int maps_string_hashtable_get(maps_string_hashtable_h table, const char *key, ch
  * @see maps_string_hashtable_get()
  * @see maps_string_hashtable_create()
  */
-int maps_string_hashtable_remove(maps_string_hashtable_h table, const char *key);
+int maps_string_hashtable_remove(maps_string_hashtable_h table, const char *key) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called once for each key-value pair while iterating through
  * the given table.
  * @details This function is called once for each key-value pair of the given
@@ -574,10 +572,10 @@ int maps_string_hashtable_remove(maps_string_hashtable_h table, const char *key)
  *
  * @see maps_string_hashtable_foreach()
  */
-typedef bool(*maps_string_hashtable_foreach_cb) (int index, int total, char *key, char *value, void *user_data);
+typedef bool(*maps_string_hashtable_foreach_cb) (int index, int total, char *key, char *value, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the key-value pairs of the specified table.
  * @details This function delivers key-value pairs of a specified table via
  * maps_string_hashtable_foreach_cb() callback.
@@ -603,10 +601,10 @@ typedef bool(*maps_string_hashtable_foreach_cb) (int index, int total, char *key
  * @see maps_string_hashtable_get()
  * @see maps_string_hashtable_create()
  */
-int maps_string_hashtable_foreach(maps_string_hashtable_h table, maps_string_hashtable_foreach_cb callback, void *user_data);
+int maps_string_hashtable_foreach(maps_string_hashtable_h table, maps_string_hashtable_foreach_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Checks if key is in hash_table.
  * @details This function checks if the specified key is in the Hash Table of
  * strings.
@@ -626,7 +624,7 @@ int maps_string_hashtable_foreach(maps_string_hashtable_h table, maps_string_has
  * @see maps_string_hashtable_get()
  * @see maps_string_hashtable_create()
  */
-int maps_string_hashtable_contains(maps_string_hashtable_h table, const char *key, bool *contains);
+int maps_string_hashtable_contains(maps_string_hashtable_h table, const char *key, bool *contains) TIZEN_DEPRECATED_API;
 
 /**
  * @}
@@ -635,7 +633,6 @@ int maps_string_hashtable_contains(maps_string_hashtable_h table, const char *ke
 /*----------------------------------------------------------------------------*/
 
 /*
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_INT_HASHTABLE Maps Integer Hash Tables
  *
@@ -648,7 +645,7 @@ int maps_string_hashtable_contains(maps_string_hashtable_h table, const char *ke
  */
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The handle of Hash Table of integers.
  * @details The handle of Hash Table of integers can be obtained via call of
  * maps_int_hashtable_create().
@@ -668,7 +665,7 @@ int maps_string_hashtable_contains(maps_string_hashtable_h table, const char *ke
 typedef void *maps_int_hashtable_h;
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new Hash Table of integers.
  * @details This function creates a new instance of Hash Table of integers,
  * associate a new handle with it and allocates all needed resources.
@@ -686,10 +683,10 @@ typedef void *maps_int_hashtable_h;
  * @see maps_int_hashtable_clone()
  * @see maps_int_hashtable_destroy()
  */
-int maps_int_hashtable_create(maps_int_hashtable_h *table);
+int maps_int_hashtable_create(maps_int_hashtable_h *table) TIZEN_DEPRECATED_API;
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the Hash Table of integers and releases all its
  * resources.
  * @details This function destroys the Hash Table handle and releases all its
@@ -708,10 +705,10 @@ int maps_int_hashtable_create(maps_int_hashtable_h *table);
  * @see maps_int_hashtable_create()
  * @see maps_int_hashtable_clone()
  */
-int maps_int_hashtable_destroy(maps_int_hashtable_h table);
+int maps_int_hashtable_destroy(maps_int_hashtable_h table) TIZEN_DEPRECATED_API;
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the Hash Table of integers.
  * @details This function clones the Hash Table of integers @a origin and all
  * its resources.
@@ -733,10 +730,10 @@ int maps_int_hashtable_destroy(maps_int_hashtable_h table);
  * @see maps_int_hashtable_create()
  * @see maps_int_hashtable_destroy()
  */
-int maps_int_hashtable_clone(const maps_int_hashtable_h origin, maps_int_hashtable_h *cloned);
+int maps_int_hashtable_clone(const maps_int_hashtable_h origin, maps_int_hashtable_h *cloned) TIZEN_DEPRECATED_API;
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the association between integer key and value in the table.
  * @details This function sets the association between int key and value in
  * the Hash Table.
@@ -756,10 +753,10 @@ int maps_int_hashtable_clone(const maps_int_hashtable_h origin, maps_int_hashtab
  * @see maps_int_hashtable_remove()
  * @see maps_int_hashtable_create()
  */
-int maps_int_hashtable_set(maps_int_hashtable_h table, const int key, const int value);
+int maps_int_hashtable_set(maps_int_hashtable_h table, const int key, const int value) TIZEN_DEPRECATED_API;
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the integer value associated with an integer key in the
  * table.
  * @details This function gets the integer value associated with a integer key
@@ -780,10 +777,10 @@ int maps_int_hashtable_set(maps_int_hashtable_h table, const int key, const int
  * @see maps_int_hashtable_remove()
  * @see maps_int_hashtable_create()
  */
-int maps_int_hashtable_get(maps_int_hashtable_h table, const int key, int *value);
+int maps_int_hashtable_get(maps_int_hashtable_h table, const int key, int *value) TIZEN_DEPRECATED_API;
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Removes the key-value pair from the table.
  * @details This function removes the key-value pair from the Hash Table.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -802,10 +799,10 @@ int maps_int_hashtable_get(maps_int_hashtable_h table, const int key, int *value
  * @see maps_int_hashtable_get()
  * @see maps_int_hashtable_create()
  */
-int maps_int_hashtable_remove(maps_int_hashtable_h table, const int key);
+int maps_int_hashtable_remove(maps_int_hashtable_h table, const int key) TIZEN_DEPRECATED_API;
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called once for each key-value pair while iterating through
  * the given table.
  * @details This function is called once for each key-value pair of the given
@@ -826,10 +823,10 @@ int maps_int_hashtable_remove(maps_int_hashtable_h table, const int key);
  *
  * @see maps_int_hashtable_foreach()
  */
-typedef bool(*maps_int_hashtable_foreach_cb) (int index, int total, const int key, const int value, void *user_data);
+typedef bool(*maps_int_hashtable_foreach_cb) (int index, int total, const int key, const int value, void *user_data) TIZEN_DEPRECATED_API;
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the key-value pairs of the specified table.
  * @details This function delivers key-value pairs of a specified table via
  * maps_int_hashtable_foreach_cb() callback.
@@ -855,10 +852,10 @@ typedef bool(*maps_int_hashtable_foreach_cb) (int index, int total, const int ke
  * @see maps_int_hashtable_get()
  * @see maps_int_hashtable_create()
  */
-int maps_int_hashtable_foreach(maps_int_hashtable_h table, maps_int_hashtable_foreach_cb callback, void *user_data);
+int maps_int_hashtable_foreach(maps_int_hashtable_h table, maps_int_hashtable_foreach_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Checks if key is in hash_table.
  * @details This function checks if the specified key is in the Hash Table of
  * integers.
@@ -878,7 +875,7 @@ int maps_int_hashtable_foreach(maps_int_hashtable_h table, maps_int_hashtable_fo
  * @see maps_int_hashtable_get()
  * @see maps_int_hashtable_create()
  */
-int maps_int_hashtable_contains(maps_int_hashtable_h table, const int key, bool *contains);
+int maps_int_hashtable_contains(maps_int_hashtable_h table, const int key, bool *contains) TIZEN_DEPRECATED_API;
 
 /*
  * @}
@@ -887,7 +884,6 @@ int maps_int_hashtable_contains(maps_int_hashtable_h table, const int key, bool
 /*----------------------------------------------------------------------------*/
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_ITEM_HASHTABLE Maps Item Hash Tables
  *
@@ -900,7 +896,7 @@ int maps_int_hashtable_contains(maps_int_hashtable_h table, const int key, bool
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The handle of Hash Table of arbitrary items.
  * @details The handle of Hash Table of arbitrary items can be obtained via call
  * of maps_item_hashtable_create().
@@ -924,7 +920,7 @@ int maps_int_hashtable_contains(maps_int_hashtable_h table, const int key, bool
 typedef void *maps_item_hashtable_h;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new Hash Table of arbitrary items.
  * @details This function creates a new instance of Hash Table of arbitrary
  * items, associate a new handle with it and allocates all needed resources.
@@ -942,10 +938,10 @@ typedef void *maps_item_hashtable_h;
  * @see maps_item_hashtable_clone()
  * @see maps_item_hashtable_destroy()
  */
-int maps_item_hashtable_create(maps_item_hashtable_h *table);
+int maps_item_hashtable_create(maps_item_hashtable_h *table) TIZEN_DEPRECATED_API;
 
 /**
-* @deprecated Deprecated since 7.5.
+* @deprecated Deprecated since 8.0.
 * @brief Destroys the Hash Table of arbitrary items and releases all its
 * resources.
  * @details This function destroys the Hash Table handle and releases all its
@@ -965,10 +961,10 @@ int maps_item_hashtable_create(maps_item_hashtable_h *table);
  * @see maps_item_hashtable_create()
  * @see maps_item_hashtable_clone()
  */
-int maps_item_hashtable_destroy(maps_item_hashtable_h table);
+int maps_item_hashtable_destroy(maps_item_hashtable_h table) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the Hash Table of arbitrary items.
  * @details This function clones the Hash Table of arbitrary items @a origin and
  * all its resources.
@@ -990,10 +986,10 @@ int maps_item_hashtable_destroy(maps_item_hashtable_h table);
  * @see maps_item_hashtable_create()
  * @see maps_item_hashtable_destroy()
  */
-int maps_item_hashtable_clone(const maps_item_hashtable_h origin, maps_item_hashtable_h *cloned);
+int maps_item_hashtable_clone(const maps_item_hashtable_h origin, maps_item_hashtable_h *cloned) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clone function, making a copy of a Hash Table item.
  * @details This function is called once for each item of the given Hash Table
  * while it is being cloned during the maps_item_hashtable_clone() procedure.
@@ -1017,10 +1013,10 @@ int maps_item_hashtable_clone(const maps_item_hashtable_h origin, maps_item_hash
  * @see maps_item_hashtable_clone()
  * @see maps_item_hashtable_set()
  */
-typedef int (*maps_item_hashtable_clone_cb) (void *origin, void **cloned);
+typedef int (*maps_item_hashtable_clone_cb) (void *origin, void **cloned) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Free function, destroying an item of the Hash Table.
  * @details This function is called once for each item of the given Hash Table
  * while this item is to be destroyed during maps_item_hashtable_destroy().
@@ -1043,10 +1039,10 @@ typedef int (*maps_item_hashtable_clone_cb) (void *origin, void **cloned);
  * @see maps_item_hashtable_remove()
  * @see maps_item_hashtable_set()
  */
-typedef int (*maps_item_hashtable_free_cb) (void *data);
+typedef int (*maps_item_hashtable_free_cb) (void *data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the table item of string type (char*).
  * @details This is a helper function of type #maps_item_hashtable_clone_cb,
  * which is useful while adding to the table an item of string type (char*).
@@ -1071,10 +1067,10 @@ typedef int (*maps_item_hashtable_free_cb) (void *data);
  * @see maps_item_hashtable_set()
  * @see maps_item_hashtable_free_string()
  */
-int maps_item_hashtable_clone_string(void *origin, void **cloned);
+int maps_item_hashtable_clone_string(void *origin, void **cloned) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the table item of string type (char*).
  * @details This is a helper function of type #maps_item_hashtable_free_cb,
  * which is useful while adding to the table an item of string type (char*).
@@ -1101,10 +1097,10 @@ int maps_item_hashtable_clone_string(void *origin, void **cloned);
  * @see maps_item_hashtable_remove()
  * @see maps_item_hashtable_clone_string()
  */
-int maps_item_hashtable_free_string(void *data);
+int maps_item_hashtable_free_string(void *data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the table item of integer type (int*).
  * @details This is a helper function of type #maps_item_hashtable_clone_cb,
  * which is useful while adding to the table an item of integer type (int*).
@@ -1128,10 +1124,10 @@ int maps_item_hashtable_free_string(void *data);
  * @see maps_item_hashtable_set()
  * @see maps_item_hashtable_free_int()
  */
-int maps_item_hashtable_clone_int(void *origin, void **cloned);
+int maps_item_hashtable_clone_int(void *origin, void **cloned) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the table item of integer type (int*).
  * @details This is a helper function of type #maps_item_hashtable_free_cb,
  * which is useful while adding to the table an item of integer type (int*).
@@ -1158,10 +1154,10 @@ int maps_item_hashtable_clone_int(void *origin, void **cloned);
  * @see maps_item_hashtable_remove()
  * @see maps_item_hashtable_clone_int()
  */
-int maps_item_hashtable_free_int(void *data);
+int maps_item_hashtable_free_int(void *data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the table item of floating point numeric type (double*).
  * @details This is a helper function of type #maps_item_hashtable_clone_cb,
  * which is useful while adding to the table an item of floating point numeric
@@ -1185,10 +1181,10 @@ int maps_item_hashtable_free_int(void *data);
  * @see maps_item_hashtable_set()
  * @see maps_item_hashtable_free_float()
  */
-int maps_item_hashtable_clone_float(void *origin, void **cloned);
+int maps_item_hashtable_clone_float(void *origin, void **cloned) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the table item of floating point numeric type
  * (double*).
  * @details This is a helper function of type #maps_item_hashtable_free_cb,
@@ -1217,10 +1213,10 @@ int maps_item_hashtable_clone_float(void *origin, void **cloned);
  * @see maps_item_hashtable_remove()
  * @see maps_item_hashtable_clone_float()
  */
-int maps_item_hashtable_free_float(void *data);
+int maps_item_hashtable_free_float(void *data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the association between string key and string (char*)
  * value in the table.
  * @details This function sets the association between string key and string
@@ -1248,10 +1244,10 @@ int maps_item_hashtable_free_float(void *data);
  * @see maps_item_hashtable_clone_string()
  * @see maps_item_hashtable_free_string()
  */
-int maps_item_hashtable_set_string(maps_item_hashtable_h table, const char *key, const char *value);
+int maps_item_hashtable_set_string(maps_item_hashtable_h table, const char *key, const char *value) TIZEN_DEPRECATED_API;
 
  /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the association between string key and integer value in the
  * table.
  * @details This function sets the association between string key and integer
@@ -1279,10 +1275,10 @@ int maps_item_hashtable_set_string(maps_item_hashtable_h table, const char *key,
  * @see maps_item_hashtable_clone_int()
  * @see maps_item_hashtable_free_int()
  */
-int maps_item_hashtable_set_int(maps_item_hashtable_h table, const char *key, const int value);
+int maps_item_hashtable_set_int(maps_item_hashtable_h table, const char *key, const int value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the association between string key and floating point
  * numeric value in the table.
  * @details This function sets the association between string key and floating
@@ -1310,10 +1306,10 @@ int maps_item_hashtable_set_int(maps_item_hashtable_h table, const char *key, co
  * @see maps_item_hashtable_clone_float()
  * @see maps_item_hashtable_free_float()
  */
-int maps_item_hashtable_set_float(maps_item_hashtable_h table, const char *key, const double value);
+int maps_item_hashtable_set_float(maps_item_hashtable_h table, const char *key, const double value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the association between key and value in the table.
  * @details This function sets the association between string key and
  * arbitrary typed value in the Hash Table.
@@ -1366,10 +1362,10 @@ int maps_item_hashtable_set_float(maps_item_hashtable_h table, const char *key,
  * @see maps_item_hashtable_set_float()
  * @see maps_item_hashtable_create()
  */
-int maps_item_hashtable_set(maps_item_hashtable_h table, const char *key, const void *value, maps_item_hashtable_clone_cb clone_func, maps_item_hashtable_free_cb free_func);
+int maps_item_hashtable_set(maps_item_hashtable_h table, const char *key, const void *value, maps_item_hashtable_clone_cb clone_func, maps_item_hashtable_free_cb free_func) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the association between string key and string (char*)
  * value in the table.
  * @details This function gets the association between string key and string
@@ -1394,10 +1390,10 @@ int maps_item_hashtable_set(maps_item_hashtable_h table, const char *key, const
  * @see maps_item_hashtable_clone_string()
  * @see maps_item_hashtable_free_string()
  */
-int maps_item_hashtable_get_string(maps_item_hashtable_h table, const char *key, char **value);
+int maps_item_hashtable_get_string(maps_item_hashtable_h table, const char *key, char **value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the association between string key and integer value in the
  * table.
  * @details This function gets the association between string key and integer
@@ -1421,10 +1417,10 @@ int maps_item_hashtable_get_string(maps_item_hashtable_h table, const char *key,
  * @see maps_item_hashtable_clone_int()
  * @see maps_item_hashtable_free_int()
  */
-int maps_item_hashtable_get_int(maps_item_hashtable_h table, const char *key, int *value);
+int maps_item_hashtable_get_int(maps_item_hashtable_h table, const char *key, int *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the association between string key and floating point
  * numeric value in the table.
  * @details This function gets the association between string key and floating
@@ -1448,10 +1444,10 @@ int maps_item_hashtable_get_int(maps_item_hashtable_h table, const char *key, in
  * @see maps_item_hashtable_clone_float()
  * @see maps_item_hashtable_free_float()
  */
-int maps_item_hashtable_get_float(maps_item_hashtable_h table, const char *key, double *value);
+int maps_item_hashtable_get_float(maps_item_hashtable_h table, const char *key, double *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the value associated with a string key in the table.
  * @details This function gets the value associated with a string key in the
  * Hash Table.
@@ -1472,10 +1468,10 @@ int maps_item_hashtable_get_float(maps_item_hashtable_h table, const char *key,
  * @see maps_item_hashtable_remove()
  * @see maps_item_hashtable_create()
  */
-int maps_item_hashtable_get(maps_item_hashtable_h table, const char *key, void **value);
+int maps_item_hashtable_get(maps_item_hashtable_h table, const char *key, void **value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Removes the key-value pair from the table.
  * @details This function removes the key-value pair from the Hash Table.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -1495,10 +1491,10 @@ int maps_item_hashtable_get(maps_item_hashtable_h table, const char *key, void *
  * @see maps_item_hashtable_create()
 
  */
-int maps_item_hashtable_remove(maps_item_hashtable_h table, const char *key);
+int maps_item_hashtable_remove(maps_item_hashtable_h table, const char *key) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called once for each key-value pair while iterating through the
  * given table.
  * @details This function is called once for each key-value pair of the given
@@ -1520,10 +1516,10 @@ int maps_item_hashtable_remove(maps_item_hashtable_h table, const char *key);
  *
  * @see maps_item_hashtable_foreach()
  */
-typedef bool(*maps_item_hashtable_foreach_cb) (int index, int total, char *key, void *value, void *user_data);
+typedef bool(*maps_item_hashtable_foreach_cb) (int index, int total, char *key, void *value, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the key-value pairs of the specified table.
  * @details This function delivers key-value pairs of a specified table via
  * maps_item_hashtable_foreach_cb() callback.
@@ -1548,10 +1544,10 @@ typedef bool(*maps_item_hashtable_foreach_cb) (int index, int total, char *key,
  * @see maps_item_hashtable_get()
  * @see maps_item_hashtable_create()
  */
-int maps_item_hashtable_foreach(maps_item_hashtable_h table, maps_item_hashtable_foreach_cb callback, void *user_data);
+int maps_item_hashtable_foreach(maps_item_hashtable_h table, maps_item_hashtable_foreach_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Checks if key is in hash_table.
  * @details This function checks if the specified key is in the Hash Table.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -1571,7 +1567,7 @@ int maps_item_hashtable_foreach(maps_item_hashtable_h table, maps_item_hashtable
  * @see maps_item_hashtable_create()
 
  */
-int maps_item_hashtable_contains(maps_item_hashtable_h table, const char *key, bool *contains);
+int maps_item_hashtable_contains(maps_item_hashtable_h table, const char *key, bool *contains) TIZEN_DEPRECATED_API;
 
 /**
  * @}
index 52374fb..81c0990 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef __MAPS_PLACE_H__
 #define __MAPS_PLACE_H__
 
-
+#include <tizen.h>
 #include <tizen_type.h>
 #include <maps_address.h>
 #include <maps_place_category.h>
@@ -33,7 +33,6 @@
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_DATA_MODULE Place
  * @file maps_place.h
@@ -50,7 +49,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place handle.
  * @details The handle of Place instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -63,7 +62,7 @@ typedef void *maps_place_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place list handle.
  * @details The handle of Place list instance.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -77,7 +76,7 @@ typedef void *maps_place_list_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Place Properties.
  * @details This callback is invoked while iterating through the list of Place Properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -92,11 +91,11 @@ typedef void *maps_place_list_h;
  * @pre maps_place_foreach_property() will invoke this callback.
  * @see maps_place_foreach_property()
  */
-typedef bool(*maps_place_properties_cb) (int index, int total, char *key, void *value, void *user_data);
+typedef bool(*maps_place_properties_cb) (int index, int total, char *key, void *value, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Place Categories.
  * @details This callback is invoked while iterating through the list of Place Categories.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -112,11 +111,11 @@ typedef bool(*maps_place_properties_cb) (int index, int total, char *key, void *
  * @see maps_place_foreach_category()
  * @see #maps_place_category_h
  */
-typedef bool(*maps_place_categories_cb) (int index, int total, maps_place_category_h category, void *user_data);
+typedef bool(*maps_place_categories_cb) (int index, int total, maps_place_category_h category, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Place Attributes.
  * @details This callback is invoked while iterating through the list of Place Attributes.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -132,11 +131,11 @@ typedef bool(*maps_place_categories_cb) (int index, int total, maps_place_catego
  * @see maps_place_foreach_attribute()
  * @see #maps_place_attribute_h
  */
-typedef bool(*maps_place_attributes_cb) (int index, int total, maps_place_attribute_h attribute, void *user_data);
+typedef bool(*maps_place_attributes_cb) (int index, int total, maps_place_attribute_h attribute, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Place Contacts.
  * @details This callback is invoked while iterating through the list of Place Contacts.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -152,11 +151,11 @@ typedef bool(*maps_place_attributes_cb) (int index, int total, maps_place_attrib
  * @see maps_place_foreach_contact()
  * @see #maps_place_contact_h
  */
-typedef bool(*maps_place_contacts_cb) (int index, int total, maps_place_contact_h contact, void *user_data);
+typedef bool(*maps_place_contacts_cb) (int index, int total, maps_place_contact_h contact, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Place Editorial.
  * @details This callback is invoked while iterating through the list of Place Editorials.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -172,11 +171,11 @@ typedef bool(*maps_place_contacts_cb) (int index, int total, maps_place_contact_
  * @see maps_place_foreach_editorial()
  * @see #maps_place_editorial_h
  */
-typedef bool(*maps_place_editorials_cb) (int index, int total, maps_place_editorial_h editorial, void *user_data);
+typedef bool(*maps_place_editorials_cb) (int index, int total, maps_place_editorial_h editorial, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Place Image.
  * @details This callback is invoked while iterating through the list of Place Images.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -192,11 +191,11 @@ typedef bool(*maps_place_editorials_cb) (int index, int total, maps_place_editor
  * @see maps_place_foreach_image()
  * @see #maps_place_image_h
  */
-typedef bool(*maps_place_images_cb) (int index, int total, maps_place_image_h image, void *user_data);
+typedef bool(*maps_place_images_cb) (int index, int total, maps_place_image_h image, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Place Review.
  * @details This callback is invoked while iterating through the list of Place Reviews.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -212,11 +211,11 @@ typedef bool(*maps_place_images_cb) (int index, int total, maps_place_image_h im
  * @see maps_place_foreach_review()
  * @see #maps_place_image_h
  */
-typedef bool(*maps_place_reviews_cb) (int index, int total, maps_place_review_h review, void *user_data);
+typedef bool(*maps_place_reviews_cb) (int index, int total, maps_place_review_h review, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Place.
  * @details This callback is invoked while iterating through the list of Place.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -235,14 +234,14 @@ typedef bool(*maps_place_reviews_cb) (int index, int total, maps_place_review_h
  * @see maps_place_get_rating()
  * @see maps_place_foreach_category()
  */
-typedef bool(*maps_place_cb) (int index, maps_place_h place, void *user_data);
+typedef bool(*maps_place_cb) (int index, maps_place_h place, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place handle and releases all its resources.
  * @details This function destroys the place handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -254,11 +253,11 @@ typedef bool(*maps_place_cb) (int index, maps_place_h place, void *user_data);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_clone()
  */
-int maps_place_destroy(maps_place_h place);
+int maps_place_destroy(maps_place_h place) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place handle.
  * @details This function clones the place handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -273,14 +272,14 @@ int maps_place_destroy(maps_place_h place);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_destroy()
  */
-int maps_place_clone(const maps_place_h origin, maps_place_h *cloned);
+int maps_place_clone(const maps_place_h origin, maps_place_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place ID.
  * @details This function gets the place ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -293,11 +292,11 @@ int maps_place_clone(const maps_place_h origin, maps_place_h *cloned);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_get_id(const maps_place_h place, char **id);
+int maps_place_get_id(const maps_place_h place, char **id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place name.
  * @details This function gets the place name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -310,11 +309,11 @@ int maps_place_get_id(const maps_place_h place, char **id);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_get_name(const maps_place_h place, char **name);
+int maps_place_get_name(const maps_place_h place, char **name) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place view URI.
  * @details This function gets the place view URI.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -327,11 +326,11 @@ int maps_place_get_name(const maps_place_h place, char **name);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_get_uri(const maps_place_h place, char **uri);
+int maps_place_get_uri(const maps_place_h place, char **uri) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place location.
  * @details This function gets the place location.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -344,11 +343,11 @@ int maps_place_get_uri(const maps_place_h place, char **uri);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_get_location(const maps_place_h place, maps_coordinates_h *location);
+int maps_place_get_location(const maps_place_h place, maps_coordinates_h *location) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place distance from the center of the location.
  * @details This function gets the place distance from the center of the location.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -360,11 +359,11 @@ int maps_place_get_location(const maps_place_h place, maps_coordinates_h *locati
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_get_distance(const maps_place_h place, int *distance);
+int maps_place_get_distance(const maps_place_h place, int *distance) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place address.
  * @details This function gets the place address.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -377,10 +376,10 @@ int maps_place_get_distance(const maps_place_h place, int *distance);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_get_address(const maps_place_h place, maps_address_h *address);
+int maps_place_get_address(const maps_place_h place, maps_address_h *address) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place rating.
  * @details This function gets the place rating.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -393,11 +392,11 @@ int maps_place_get_address(const maps_place_h place, maps_address_h *address);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_get_rating(const maps_place_h place, maps_place_rating_h *rating);
+int maps_place_get_rating(const maps_place_h place, maps_place_rating_h *rating) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all properties.
  * @details This function retrieves all place properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -414,11 +413,11 @@ int maps_place_get_rating(const maps_place_h place, maps_place_rating_h *rating)
  * @post This function invokes maps_place_properties_cb() repeatedly to retrieve each property.
  * @see maps_place_properties_cb()
  */
-int maps_place_foreach_property(const maps_place_h place, maps_place_properties_cb callback, void *user_data);
+int maps_place_foreach_property(const maps_place_h place, maps_place_properties_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all categories
  * @details This function retrieves all place categories.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -435,11 +434,11 @@ int maps_place_foreach_property(const maps_place_h place, maps_place_properties_
  * @post This function invokes maps_place_categories_cb() repeatedly to retrieve each category.
  * @see maps_place_categories_cb()
  */
-int maps_place_foreach_category(const maps_place_h place, maps_place_categories_cb callback, void *user_data);
+int maps_place_foreach_category(const maps_place_h place, maps_place_categories_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all attributes.
  * @details This function retrieves all place attributes.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -456,11 +455,11 @@ int maps_place_foreach_category(const maps_place_h place, maps_place_categories_
  * @post This function invokes maps_place_attributes_cb() repeatedly to retrieve each attribute.
  * @see maps_place_attributes_cb()
  */
-int maps_place_foreach_attribute(const maps_place_h place, maps_place_attributes_cb callback, void *user_data);
+int maps_place_foreach_attribute(const maps_place_h place, maps_place_attributes_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all contacts.
  * @details This function retrieves all place contacts.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -477,11 +476,11 @@ int maps_place_foreach_attribute(const maps_place_h place, maps_place_attributes
  * @post This function invokes maps_place_contacts_cb() repeatedly to retrieve each contact.
  * @see maps_place_contacts_cb()
  */
-int maps_place_foreach_contact(const maps_place_h place, maps_place_contacts_cb callback, void *user_data);
+int maps_place_foreach_contact(const maps_place_h place, maps_place_contacts_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all editorials.
  * @details This function retrieves all place editorials.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -498,11 +497,11 @@ int maps_place_foreach_contact(const maps_place_h place, maps_place_contacts_cb
  * @post This function invokes maps_place_editorials_cb() repeatedly to retrieve each editorial.
  * @see maps_place_editorials_cb()
  */
-int maps_place_foreach_editorial(const maps_place_h place, maps_place_editorials_cb callback, void *user_data);
+int maps_place_foreach_editorial(const maps_place_h place, maps_place_editorials_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all images.
  * @details This function retrieves all place images.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -519,11 +518,11 @@ int maps_place_foreach_editorial(const maps_place_h place, maps_place_editorials
  * @post This function invokes maps_place_images_cb() repeatedly to retrieve each image.
  * @see maps_place_images_cb()
  */
-int maps_place_foreach_image(const maps_place_h place, maps_place_images_cb callback, void *user_data);
+int maps_place_foreach_image(const maps_place_h place, maps_place_images_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all reviews.
  * @details This function retrieves all place reviews.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -540,11 +539,11 @@ int maps_place_foreach_image(const maps_place_h place, maps_place_images_cb call
  * @post This function invokes maps_place_reviews_cb() repeatedly to retrieve each review.
  * @see maps_place_reviews_cb()
  */
-int maps_place_foreach_review(const maps_place_h place, maps_place_reviews_cb callback, void *user_data);
+int maps_place_foreach_review(const maps_place_h place, maps_place_reviews_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place supplier link.
  * @details This function gets the place supplier link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -557,11 +556,11 @@ int maps_place_foreach_review(const maps_place_h place, maps_place_reviews_cb ca
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_get_supplier_link(const maps_place_h place, maps_place_link_object_h *supplier);
+int maps_place_get_supplier_link(const maps_place_h place, maps_place_link_object_h *supplier) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place related link.
  * @details This function gets the place related link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -574,11 +573,11 @@ int maps_place_get_supplier_link(const maps_place_h place, maps_place_link_objec
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_get_related_link(const maps_place_h place, maps_place_link_object_h *related);
+int maps_place_get_related_link(const maps_place_h place, maps_place_link_object_h *related) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all places.
  * @details This function retrieves all places.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -597,11 +596,11 @@ int maps_place_get_related_link(const maps_place_h place, maps_place_link_object
  * @see maps_place_cb()
  * @see maps_place_list_destroy()
  */
-int maps_place_list_foreach(const maps_place_list_h place_list, maps_place_cb callback, void *user_data);
+int maps_place_list_foreach(const maps_place_list_h place_list, maps_place_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Frees all of the memory used by a place list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @param[in] place_list The place list handle
@@ -612,7 +611,7 @@ int maps_place_list_foreach(const maps_place_list_h place_list, maps_place_cb ca
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_list_foreach()
  */
-int maps_place_list_destroy(maps_place_list_h place_list);
+int maps_place_list_destroy(maps_place_list_h place_list) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index ecd2db5..d1be1f4 100644 (file)
@@ -18,9 +18,9 @@
 #ifndef __MAPS_PLACE_ATTRIBUTE_H__
 #define __MAPS_PLACE_ATTRIBUTE_H__
 
+#include <tizen.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_ATTRIBUTE_MODULE Attribute
  * @file maps_place_attribute.h
@@ -37,7 +37,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Attribute handle.
  * @details The handle of Place Attribute instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -53,7 +53,7 @@ typedef void *maps_place_attribute_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place attribute handle and releases all its resources.
  * @details This function destroys the place attribute handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -65,11 +65,11 @@ typedef void *maps_place_attribute_h;
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_attribute_clone()
  */
-int maps_place_attribute_destroy(maps_place_attribute_h attribute);
+int maps_place_attribute_destroy(maps_place_attribute_h attribute) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place attribute handle.
  * @details This function clones the place attribute handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -84,14 +84,14 @@ int maps_place_attribute_destroy(maps_place_attribute_h attribute);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_attribute_destroy()
  */
-int maps_place_attribute_clone(const maps_place_attribute_h origin, maps_place_attribute_h *cloned);
+int maps_place_attribute_clone(const maps_place_attribute_h origin, maps_place_attribute_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place attribute ID.
  * @details This function gets the place attribute ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -104,11 +104,11 @@ int maps_place_attribute_clone(const maps_place_attribute_h origin, maps_place_a
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_attribute_get_id(const maps_place_attribute_h attribute, char **id);
+int maps_place_attribute_get_id(const maps_place_attribute_h attribute, char **id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place attribute label.
  * @details This function gets the place attribute label.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -121,11 +121,11 @@ int maps_place_attribute_get_id(const maps_place_attribute_h attribute, char **i
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_attribute_get_label(const maps_place_attribute_h attribute, char **label);
+int maps_place_attribute_get_label(const maps_place_attribute_h attribute, char **label) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place attribute text.
  * @details This function gets the place attribute text.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -138,7 +138,7 @@ int maps_place_attribute_get_label(const maps_place_attribute_h attribute, char
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_attribute_get_text(const maps_place_attribute_h attribute, char **text);
+int maps_place_attribute_get_text(const maps_place_attribute_h attribute, char **text) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index ea5716b..4239f12 100644 (file)
 #ifndef __MAPS_PLACE_ATTRIBUTE_PLUGIN_H__
 #define __MAPS_PLACE_ATTRIBUTE_PLUGIN_H__
 
+#include <tizen.h>
 #include <maps_place_attribute.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_ATTRIBUTE_MODULE Attribute
  *
@@ -39,7 +39,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place attribute handle.
  * @details This function creates a new place attribute handle and allocates all
  * needed resources.
@@ -58,10 +58,10 @@ extern "C" {
  * @see maps_place_attribute_destroy()
  * @see maps_place_attribute_clone()
  */
-int maps_place_attribute_create(maps_place_attribute_h *attribute);
+int maps_place_attribute_create(maps_place_attribute_h *attribute) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place attribute ID.
  * @details This function sets the place attribute ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -78,10 +78,10 @@ int maps_place_attribute_create(maps_place_attribute_h *attribute);
  * @see maps_place_attribute_create()
  * @see maps_place_attribute_get_id()
  */
-int maps_place_attribute_set_id(maps_place_attribute_h attribute, const char *id);
+int maps_place_attribute_set_id(maps_place_attribute_h attribute, const char *id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place attribute label.
  * @details This function sets the place attribute label.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -98,10 +98,10 @@ int maps_place_attribute_set_id(maps_place_attribute_h attribute, const char *id
  * @see maps_place_attribute_create()
  * @see maps_place_attribute_get_label()
  */
-int maps_place_attribute_set_label(maps_place_attribute_h attribute, const char *label);
+int maps_place_attribute_set_label(maps_place_attribute_h attribute, const char *label) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place attribute text.
  * @details This function sets the place attribute text.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -118,7 +118,7 @@ int maps_place_attribute_set_label(maps_place_attribute_h attribute, const char
  * @see maps_place_attribute_create()
  * @see maps_place_attribute_get_text()
  */
-int maps_place_attribute_set_text(maps_place_attribute_h attribute, const char *text);
+int maps_place_attribute_set_text(maps_place_attribute_h attribute, const char *text) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 88cea30..501a7f3 100644 (file)
@@ -18,9 +18,9 @@
 #ifndef __MAPS_PLACE_CATEGORY_H__
 #define __MAPS_PLACE_CATEGORY_H__
 
+#include <tizen.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_CATEGORY_MODULE Category
  * @file maps_place_category.h
@@ -37,7 +37,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Category handle.
  * @details The handle of Place Category instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -53,7 +53,7 @@ typedef void *maps_place_category_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place category handle.
  * @details This function creates a new place category handle and allocates all needed resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -69,11 +69,11 @@ typedef void *maps_place_category_h;
  * @see maps_place_category_destroy()
  * @see maps_place_category_clone()
  */
-int maps_place_category_create(maps_place_category_h *category);
+int maps_place_category_create(maps_place_category_h *category) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place category handle.
  * @details This function clones the place category handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -88,11 +88,11 @@ int maps_place_category_create(maps_place_category_h *category);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_category_destroy()
  */
-int maps_place_category_clone(const maps_place_category_h origin, maps_place_category_h *cloned);
+int maps_place_category_clone(const maps_place_category_h origin, maps_place_category_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place category handle and releases all its resources.
  * @details This function destroys the place category handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -104,14 +104,14 @@ int maps_place_category_clone(const maps_place_category_h origin, maps_place_cat
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_category_clone()
  */
-int maps_place_category_destroy(maps_place_category_h category);
+int maps_place_category_destroy(maps_place_category_h category) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place category ID.
  * @details This function gets the place category ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -124,11 +124,11 @@ int maps_place_category_destroy(maps_place_category_h category);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_category_get_id(const maps_place_category_h category, char **id);
+int maps_place_category_get_id(const maps_place_category_h category, char **id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place category name.
  * @details This function gets the place category name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -141,11 +141,11 @@ int maps_place_category_get_id(const maps_place_category_h category, char **id);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_category_get_name(const maps_place_category_h category, char **name);
+int maps_place_category_get_name(const maps_place_category_h category, char **name) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place category URL.
  * @details This function gets the place category URL.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -158,11 +158,11 @@ int maps_place_category_get_name(const maps_place_category_h category, char **na
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_category_get_url(const maps_place_category_h category, char **url);
+int maps_place_category_get_url(const maps_place_category_h category, char **url) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place category ID.
  * @details This function sets the place category ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -177,11 +177,11 @@ int maps_place_category_get_url(const maps_place_category_h category, char **url
  * @see maps_place_category_create()
  * @see maps_place_category_get_id()
  */
-int maps_place_category_set_id(maps_place_category_h category, const char *id);
+int maps_place_category_set_id(maps_place_category_h category, const char *id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place category name.
  * @details This function sets the place category name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -196,11 +196,11 @@ int maps_place_category_set_id(maps_place_category_h category, const char *id);
  * @see maps_place_category_create()
  * @see maps_place_category_get_name()
  */
-int maps_place_category_set_name(maps_place_category_h category, const char *name);
+int maps_place_category_set_name(maps_place_category_h category, const char *name) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place category URL.
  * @details This function sets the place category URL.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -215,7 +215,7 @@ int maps_place_category_set_name(maps_place_category_h category, const char *nam
  * @see maps_place_category_create()
  * @see maps_place_category_get_url()
  */
-int maps_place_category_set_url(maps_place_category_h category, const char *url);
+int maps_place_category_set_url(maps_place_category_h category, const char *url) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 4187940..66d9bb8 100644 (file)
@@ -18,9 +18,9 @@
 #ifndef __MAPS_PLACE_CONTACT_H__
 #define __MAPS_PLACE_CONTACT_H__
 
+#include <tizen.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_CONTACT_MODULE Contact
  * @file maps_place_contact.h
@@ -37,7 +37,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Contact handle.
  * @details The handle of Place Contact instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -53,7 +53,7 @@ typedef void *maps_place_contact_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place contact handle and releases all its resources.
  * @details This function destroys the place contact handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -65,11 +65,11 @@ typedef void *maps_place_contact_h;
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_contact_clone()
  */
-int maps_place_contact_destroy(maps_place_contact_h contact);
+int maps_place_contact_destroy(maps_place_contact_h contact) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place contact handle.
  * @details This function clones the place contact handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -84,14 +84,14 @@ int maps_place_contact_destroy(maps_place_contact_h contact);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_contact_destroy()
  */
-int maps_place_contact_clone(const maps_place_contact_h origin, maps_place_contact_h *cloned);
+int maps_place_contact_clone(const maps_place_contact_h origin, maps_place_contact_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place contact label.
  * @details This function gets the place contact label.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -104,11 +104,11 @@ int maps_place_contact_clone(const maps_place_contact_h origin, maps_place_conta
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_contact_get_label(const maps_place_contact_h contact, char **label);
+int maps_place_contact_get_label(const maps_place_contact_h contact, char **label) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place contact type.
  * @details This function gets the place contact type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -121,11 +121,11 @@ int maps_place_contact_get_label(const maps_place_contact_h contact, char **labe
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_contact_get_type(const maps_place_contact_h contact, char **type);
+int maps_place_contact_get_type(const maps_place_contact_h contact, char **type) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place contact value.
  * @details This function gets the place contact value.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -138,7 +138,7 @@ int maps_place_contact_get_type(const maps_place_contact_h contact, char **type)
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_contact_get_value(const maps_place_contact_h contact, char **value);
+int maps_place_contact_get_value(const maps_place_contact_h contact, char **value) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 4ff8e5a..92d5fa0 100644 (file)
 #ifndef __MAPS_PLACE_CONTACT_PLUGIN_H__
 #define __MAPS_PLACE_CONTACT_PLUGIN_H__
 
+#include <tizen.h>
 #include <maps_place_contact.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_CONTACT_MODULE Contact
  *
@@ -39,7 +39,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place contact handle.
  * @details This function creates a new place contact handle and allocates all
  * needed resources.
@@ -58,10 +58,10 @@ extern "C" {
  * @see place_contact_destroy()
  * @see maps_place_contact_clone()
  */
-int maps_place_contact_create(maps_place_contact_h *contact);
+int maps_place_contact_create(maps_place_contact_h *contact) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place contact label
  * @details This function sets the place contact label.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -78,10 +78,10 @@ int maps_place_contact_create(maps_place_contact_h *contact);
  * @see maps_place_contact_create()
  * @see maps_place_contact_get_label()
  */
-int maps_place_contact_set_label(maps_place_contact_h contact, const char *label);
+int maps_place_contact_set_label(maps_place_contact_h contact, const char *label) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place contact type
  * @details This function sets the place contact type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -98,10 +98,10 @@ int maps_place_contact_set_label(maps_place_contact_h contact, const char *label
  * @see maps_place_contact_create()
  * @see maps_place_contact_get_type()
  */
-int maps_place_contact_set_type(maps_place_contact_h contact, const char *type);
+int maps_place_contact_set_type(maps_place_contact_h contact, const char *type) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place contact value
  * @details This function sets the place contact value.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -118,7 +118,7 @@ int maps_place_contact_set_type(maps_place_contact_h contact, const char *type);
  * @see maps_place_contact_create()
  * @see maps_place_contact_get_value()
  */
-int maps_place_contact_set_value(maps_place_contact_h contact, const char *value);
+int maps_place_contact_set_value(maps_place_contact_h contact, const char *value) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index d1b57c4..868c474 100644 (file)
 #ifndef __MAPS_PLACE_EDITORIAL_H__
 #define __MAPS_PLACE_EDITORIAL_H__
 
-
+#include <tizen.h>
 #include <maps_place_media.h>
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_EDITORIAL_MODULE Editorial
  * @file maps_place_editorial.h
@@ -40,7 +39,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Editorial handle.
  * @details The handle of Place Editorial instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -56,7 +55,7 @@ typedef void *maps_place_editorial_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place editorial handle and releases all its resources.
  * @details This function destroys the place editorial handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -68,11 +67,11 @@ typedef void *maps_place_editorial_h;
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_editorial_clone()
  */
-int maps_place_editorial_destroy(maps_place_editorial_h editorial);
+int maps_place_editorial_destroy(maps_place_editorial_h editorial) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place editorial handle.
  * @details This function clones the place editorial handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -87,14 +86,14 @@ int maps_place_editorial_destroy(maps_place_editorial_h editorial);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_editorial_destroy()
  */
-int maps_place_editorial_clone(const maps_place_editorial_h origin, maps_place_editorial_h *cloned);
+int maps_place_editorial_clone(const maps_place_editorial_h origin, maps_place_editorial_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place editorial description.
  * @details This function gets the place editorial description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -107,11 +106,11 @@ int maps_place_editorial_clone(const maps_place_editorial_h origin, maps_place_e
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_editorial_get_description(const maps_place_editorial_h editorial, char **description);
+int maps_place_editorial_get_description(const maps_place_editorial_h editorial, char **description) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place editorial language.
  * @details This function gets the place editorial language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -124,11 +123,11 @@ int maps_place_editorial_get_description(const maps_place_editorial_h editorial,
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_editorial_get_language(const maps_place_editorial_h editorial, char **language);
+int maps_place_editorial_get_language(const maps_place_editorial_h editorial, char **language) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place editorial media.
  * @details This function gets the place editorial media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -142,7 +141,7 @@ int maps_place_editorial_get_language(const maps_place_editorial_h editorial, ch
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_place_media_h
  */
-int maps_place_editorial_get_media(const maps_place_editorial_h editorial, maps_place_media_h *media);
+int maps_place_editorial_get_media(const maps_place_editorial_h editorial, maps_place_media_h *media) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 2be91e9..98a41ce 100644 (file)
@@ -20,7 +20,6 @@
 #include <maps_place_editorial.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_EDITORIAL_MODULE Editorial
  *
@@ -39,7 +38,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place editorial handle.
  * @details This function creates a new place editorial handle and allocates all
  * needed resources.
@@ -57,10 +56,10 @@ extern "C" {
  * @see maps_place_editorial_destroy()
  * @see maps_place_editorial_clone()
  */
-int maps_place_editorial_create(maps_place_editorial_h *editorial);
+int maps_place_editorial_create(maps_place_editorial_h *editorial) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place editorial description.
  * @details This function sets the place editorial description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,10 +76,10 @@ int maps_place_editorial_create(maps_place_editorial_h *editorial);
  * @see maps_place_editorial_create()
  * @see maps_place_editorial_get_description()
  */
-int maps_place_editorial_set_description(maps_place_editorial_h editorial, const char *description);
+int maps_place_editorial_set_description(maps_place_editorial_h editorial, const char *description) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place editorial language.
  * @details This function sets the place editorial language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -97,10 +96,10 @@ int maps_place_editorial_set_description(maps_place_editorial_h editorial, const
  * @see maps_place_editorial_create()
  * @see maps_place_editorial_get_language()
  */
-int maps_place_editorial_set_language(maps_place_editorial_h editorial, const char *language);
+int maps_place_editorial_set_language(maps_place_editorial_h editorial, const char *language) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place editorial media.
  * @details This function sets the place editorial media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -118,7 +117,7 @@ int maps_place_editorial_set_language(maps_place_editorial_h editorial, const ch
  * @see maps_place_editorial_get_media()
  * @see maps_place_media_destroy
  */
-int maps_place_editorial_set_media(maps_place_editorial_h editorial, const maps_place_media_h media);
+int maps_place_editorial_set_media(maps_place_editorial_h editorial, const maps_place_media_h media) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 61b0e23..13164c4 100644 (file)
 #ifndef __MAPS_PLACE_FILTER_H__
 #define __MAPS_PLACE_FILTER_H__
 
-
+#include <tizen.h>
 #include <maps_place_category.h>
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_FILTER_MODULE Filter
  * @file maps_place_filter.h
@@ -41,7 +40,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Filter handle.
  * @details The handle of Place Filter instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -57,7 +56,7 @@ typedef void *maps_place_filter_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Place Filter Properties.
  * @details This callback is invoked while iterating through the list of Place Filter Properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -72,14 +71,14 @@ typedef void *maps_place_filter_h;
  * @pre maps_place_filter_foreach_property() will invoke this callback.
  * @see maps_place_filter_foreach_property()
  */
-typedef bool(*maps_place_filter_properties_cb) (int index, int total, char *key, void *value, void *user_data);
+typedef bool(*maps_place_filter_properties_cb) (int index, int total, char *key, void *value, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new Place Filter handle.
  * @details This function creates a new place filter handle and allocates all needed resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -95,11 +94,11 @@ typedef bool(*maps_place_filter_properties_cb) (int index, int total, char *key,
  * @see maps_place_filter_destroy()
  * @see maps_place_filter_clone()
  */
-int maps_place_filter_create(maps_place_filter_h *filter);
+int maps_place_filter_create(maps_place_filter_h *filter) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place filter handle and releases all its resources.
  * @details This function destroys the place filter handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -113,11 +112,11 @@ int maps_place_filter_create(maps_place_filter_h *filter);
  * @see maps_place_filter_create()
  * @see maps_place_filter_clone()
  */
-int maps_place_filter_destroy(maps_place_filter_h filter);
+int maps_place_filter_destroy(maps_place_filter_h filter) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place filter handle.
  * @details This function clones the place filter handle @a origin and all its resources.\n
  *          Place filter handle @a origin may be created using maps_place_filter_create().
@@ -135,14 +134,14 @@ int maps_place_filter_destroy(maps_place_filter_h filter);
  * @see maps_place_filter_create()
  * @see maps_place_filter_destroy()
  */
-int maps_place_filter_clone(const maps_place_filter_h origin, maps_place_filter_h *cloned);
+int maps_place_filter_clone(const maps_place_filter_h origin, maps_place_filter_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the value of the specified key in the place filter.
  * @details This function gets the value of the specified key in the place filter.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -159,11 +158,11 @@ int maps_place_filter_clone(const maps_place_filter_h origin, maps_place_filter_
  * @see maps_place_filter_set()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_get(const maps_place_filter_h filter, const char *key, char **value);
+int maps_place_filter_get(const maps_place_filter_h filter, const char *key, char **value) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the value of keyword.
  * @details This function gets the value of keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -179,11 +178,11 @@ int maps_place_filter_get(const maps_place_filter_h filter, const char *key, cha
  * @see maps_place_filter_set_keyword()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_get_keyword(const maps_place_filter_h filter, char **keyword);
+int maps_place_filter_get_keyword(const maps_place_filter_h filter, char **keyword) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place name.
  * @details This function gets the place name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -199,11 +198,11 @@ int maps_place_filter_get_keyword(const maps_place_filter_h filter, char **keywo
  * @see maps_place_filter_set_place_name()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_get_place_name(const maps_place_filter_h filter, char **place_name);
+int maps_place_filter_get_place_name(const maps_place_filter_h filter, char **place_name) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the category.
  * @details This function gets the category.\n
  *          For allowed values of keys, see the macros above.
@@ -220,11 +219,11 @@ int maps_place_filter_get_place_name(const maps_place_filter_h filter, char **pl
  * @see maps_place_filter_set_category()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_get_category(const maps_place_filter_h filter, maps_place_category_h *category);
+int maps_place_filter_get_category(const maps_place_filter_h filter, maps_place_category_h *category) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all filter properties.
  * @details This function retrieves all place filter properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -244,11 +243,11 @@ int maps_place_filter_get_category(const maps_place_filter_h filter, maps_place_
  * @see maps_place_filter_set()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_foreach_property(const maps_place_filter_h filter, maps_place_filter_properties_cb callback, void *user_data);
+int maps_place_filter_foreach_property(const maps_place_filter_h filter, maps_place_filter_properties_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place address.
  * @details This function gets the place address.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -264,14 +263,14 @@ int maps_place_filter_foreach_property(const maps_place_filter_h filter, maps_pl
  * @see maps_place_filter_set_place_address()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_get_place_address(const maps_place_filter_h filter, char **place_address);
+int maps_place_filter_get_place_address(const maps_place_filter_h filter, char **place_address) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the filter value.
  * @details This function sets the filter value in an assignment with a specified string key.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -287,11 +286,11 @@ int maps_place_filter_get_place_address(const maps_place_filter_h filter, char *
  * @see maps_place_filter_get()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_set(maps_place_filter_h filter, const char *key, const char *value);
+int maps_place_filter_set(maps_place_filter_h filter, const char *key, const char *value) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the keyword.
  * @details This function sets the keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -306,11 +305,11 @@ int maps_place_filter_set(maps_place_filter_h filter, const char *key, const cha
  * @see maps_place_filter_get_keyword()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_set_keyword(maps_place_filter_h filter, const char *keyword);
+int maps_place_filter_set_keyword(maps_place_filter_h filter, const char *keyword) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place name.
  * @details This function sets the place name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -325,11 +324,11 @@ int maps_place_filter_set_keyword(maps_place_filter_h filter, const char *keywor
  * @see maps_place_filter_get_place_name()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_set_place_name(maps_place_filter_h filter, const char *place_name);
+int maps_place_filter_set_place_name(maps_place_filter_h filter, const char *place_name) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the category.
  * @details This function sets the place name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -344,11 +343,11 @@ int maps_place_filter_set_place_name(maps_place_filter_h filter, const char *pla
  * @see maps_place_filter_get_category()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_set_category(maps_place_filter_h filter, const maps_place_category_h category);
+int maps_place_filter_set_category(maps_place_filter_h filter, const maps_place_category_h category) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place address.
  * @details This function sets the place address.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -363,7 +362,7 @@ int maps_place_filter_set_category(maps_place_filter_h filter, const maps_place_
  * @see maps_place_filter_get_place_address()
  * @see maps_place_filter_create()
  */
-int maps_place_filter_set_place_address(maps_place_filter_h filter, const char *place_address);
+int maps_place_filter_set_place_address(maps_place_filter_h filter, const char *place_address) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index fb596b7..2aeda1f 100644 (file)
 #ifndef __MAPS_PLACE_IMAGE_H__
 #define __MAPS_PLACE_IMAGE_H__
 
-
+#include <tizen.h>
 #include <maps_place_link_object.h>
 #include <maps_place_media.h>
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_IMAGE_MODULE Image
  * @file maps_place_image.h
@@ -41,7 +40,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Image handle.
  * @details The handle of Place Image instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -57,7 +56,7 @@ typedef void *maps_place_image_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place image handle and releases all its resources.
  * @details This function destroys the place image handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -69,11 +68,11 @@ typedef void *maps_place_image_h;
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_image_clone()
  */
-int maps_place_image_destroy(maps_place_image_h image);
+int maps_place_image_destroy(maps_place_image_h image) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place image handle.
  * @details This function clones the place image handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -88,14 +87,14 @@ int maps_place_image_destroy(maps_place_image_h image);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_image_destroy()
  */
-int maps_place_image_clone(const maps_place_image_h origin, maps_place_image_h *cloned);
+int maps_place_image_clone(const maps_place_image_h origin, maps_place_image_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place image ID.
  * @details This function gets the place image ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -108,11 +107,11 @@ int maps_place_image_clone(const maps_place_image_h origin, maps_place_image_h *
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_image_get_id(const maps_place_image_h image, char **id);
+int maps_place_image_get_id(const maps_place_image_h image, char **id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place image URL.
  * @details This function gets the place image URL.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -125,11 +124,11 @@ int maps_place_image_get_id(const maps_place_image_h image, char **id);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_image_get_url(const maps_place_image_h image, char **url);
+int maps_place_image_get_url(const maps_place_image_h image, char **url) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place image width.
  * @details This function gets the place image width.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -141,11 +140,11 @@ int maps_place_image_get_url(const maps_place_image_h image, char **url);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_image_get_width(const maps_place_image_h image, int *width);
+int maps_place_image_get_width(const maps_place_image_h image, int *width) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place image height.
  * @details This function gets the place image height.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -157,11 +156,11 @@ int maps_place_image_get_width(const maps_place_image_h image, int *width);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_image_get_height(const maps_place_image_h image, int *height);
+int maps_place_image_get_height(const maps_place_image_h image, int *height) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place image user link.
  * @details This function gets the place image user link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -175,11 +174,11 @@ int maps_place_image_get_height(const maps_place_image_h image, int *height);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_place_link_object_h
  */
-int maps_place_image_get_user_link(const maps_place_image_h image, maps_place_link_object_h *user);
+int maps_place_image_get_user_link(const maps_place_image_h image, maps_place_link_object_h *user) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place image media.
  * @details This function gets the place image media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -193,7 +192,7 @@ int maps_place_image_get_user_link(const maps_place_image_h image, maps_place_li
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_place_media_h
  */
-int maps_place_image_get_media(const maps_place_image_h image, maps_place_media_h *media);
+int maps_place_image_get_media(const maps_place_image_h image, maps_place_media_h *media) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index b277afa..ae794d7 100644 (file)
@@ -20,7 +20,6 @@
 #include <maps_place_image.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_IMAGE_MODULE Image
  *
@@ -39,7 +38,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place image handle.
  * @details This function creates a new place image handle and allocates all
  * needed resources.
@@ -57,10 +56,10 @@ extern "C" {
  * @see maps_place_image_destroy()
  * @see maps_place_image_clone()
  */
-int maps_place_image_create(maps_place_image_h *image);
+int maps_place_image_create(maps_place_image_h *image) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place image ID.
  * @details This function sets the place image ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,10 +76,10 @@ int maps_place_image_create(maps_place_image_h *image);
  * @see maps_place_image_create()
  * @see maps_place_image_get_id()
  */
-int maps_place_image_set_id(maps_place_image_h image, const char *id);
+int maps_place_image_set_id(maps_place_image_h image, const char *id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place image URL.
  * @details This function sets the place image URL.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -97,10 +96,10 @@ int maps_place_image_set_id(maps_place_image_h image, const char *id);
  * @see maps_place_image_create()
  * @see maps_place_image_get_url()
  */
-int maps_place_image_set_url(maps_place_image_h image, const char *url);
+int maps_place_image_set_url(maps_place_image_h image, const char *url) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place image width.
  * @details This function sets the place image width.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -117,10 +116,10 @@ int maps_place_image_set_url(maps_place_image_h image, const char *url);
  * @see maps_place_image_create()
  * @see maps_place_image_get_width()
  */
-int maps_place_image_set_width(maps_place_image_h image, const int width);
+int maps_place_image_set_width(maps_place_image_h image, const int width) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place image height.
  * @details This function sets the place image height.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -137,10 +136,10 @@ int maps_place_image_set_width(maps_place_image_h image, const int width);
  * @see maps_place_image_create()
  * @see maps_place_image_get_height()
  */
-int maps_place_image_set_height(maps_place_image_h image, const int height);
+int maps_place_image_set_height(maps_place_image_h image, const int height) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place image user link.
  * @details This function sets the place image user link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -158,10 +157,10 @@ int maps_place_image_set_height(maps_place_image_h image, const int height);
  * @see maps_place_image_get_user_link()
  * @see #maps_place_link_object_h
  */
-int maps_place_image_set_user_link(maps_place_image_h image, const maps_place_link_object_h user);
+int maps_place_image_set_user_link(maps_place_image_h image, const maps_place_link_object_h user) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place image media.
  * @details This function sets the place image media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -179,7 +178,7 @@ int maps_place_image_set_user_link(maps_place_image_h image, const maps_place_li
  * @see maps_place_image_get_media()
  * @see #maps_place_media_h
  */
-int maps_place_image_set_media(maps_place_image_h image, const maps_place_media_h media);
+int maps_place_image_set_media(maps_place_image_h image, const maps_place_media_h media) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index f6412ed..b3c964d 100644 (file)
@@ -18,9 +18,9 @@
 #ifndef __MAPS_PLACE_LINK_OBJECT_H__
 #define __MAPS_PLACE_LINK_OBJECT_H__
 
+#include <tizen.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_LINK_MODULE Link
  * @file maps_place_link_object.h
@@ -36,7 +36,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Link Object handle.
  * @details The handle of Place Link Object instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -52,7 +52,7 @@ typedef void *maps_place_link_object_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place link object handle and releases all its resources.
  * @details This function destroys the place link object handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -64,11 +64,11 @@ typedef void *maps_place_link_object_h;
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_link_object_clone()
  */
-int maps_place_link_object_destroy(maps_place_link_object_h link);
+int maps_place_link_object_destroy(maps_place_link_object_h link) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place link object handle.
  * @details This function clones the place link object handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -83,14 +83,14 @@ int maps_place_link_object_destroy(maps_place_link_object_h link);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_link_object_destroy()
  */
-int maps_place_link_object_clone(const maps_place_link_object_h origin, maps_place_link_object_h *cloned);
+int maps_place_link_object_clone(const maps_place_link_object_h origin, maps_place_link_object_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place link object ID.
  * @details This function gets the place link object ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -103,11 +103,11 @@ int maps_place_link_object_clone(const maps_place_link_object_h origin, maps_pla
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_link_object_get_id(const maps_place_link_object_h link, char **id);
+int maps_place_link_object_get_id(const maps_place_link_object_h link, char **id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place link object name.
  * @details This function gets the place link object name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -120,11 +120,11 @@ int maps_place_link_object_get_id(const maps_place_link_object_h link, char **id
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_link_object_get_name(const maps_place_link_object_h link, char **name);
+int maps_place_link_object_get_name(const maps_place_link_object_h link, char **name) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place link object string.
  * @details This function gets the place link object string.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -137,11 +137,11 @@ int maps_place_link_object_get_name(const maps_place_link_object_h link, char **
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_link_object_get_string(const maps_place_link_object_h link, char **string);
+int maps_place_link_object_get_string(const maps_place_link_object_h link, char **string) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place link object type.
  * @details This function gets the place link object type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -154,7 +154,7 @@ int maps_place_link_object_get_string(const maps_place_link_object_h link, char
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_link_object_get_type(const maps_place_link_object_h link, char **type);
+int maps_place_link_object_get_type(const maps_place_link_object_h link, char **type) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index d9e8cf8..37cba72 100644 (file)
@@ -20,7 +20,6 @@
 #include <maps_place_link_object.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_LINK_MODULE Link
  *
@@ -39,7 +38,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place link object handle.
  * @details This function creates a new place link object handle and allocates
  * all needed resources.
@@ -57,10 +56,10 @@ extern "C" {
  * @see maps_place_link_object_destroy()
  * @see maps_place_link_object_clone()
  */
-int maps_place_link_object_create(maps_place_link_object_h *link);
+int maps_place_link_object_create(maps_place_link_object_h *link) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place link object ID.
  * @details This function sets the place link object ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,10 +76,10 @@ int maps_place_link_object_create(maps_place_link_object_h *link);
  * @see maps_place_link_object_create()
  * @see maps_place_link_object_get_id()
  */
-int maps_place_link_object_set_id(maps_place_link_object_h link, const char *id);
+int maps_place_link_object_set_id(maps_place_link_object_h link, const char *id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place link object string.
  * @details This function sets the place link object string.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -97,10 +96,10 @@ int maps_place_link_object_set_id(maps_place_link_object_h link, const char *id)
  * @see maps_place_link_object_create()
  * @see maps_place_link_object_get_string()
  */
-int maps_place_link_object_set_string(maps_place_link_object_h link, const char *string);
+int maps_place_link_object_set_string(maps_place_link_object_h link, const char *string) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place link object type.
  * @details This function sets the place link object type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -117,10 +116,10 @@ int maps_place_link_object_set_string(maps_place_link_object_h link, const char
  * @see maps_place_link_object_create()
  * @see maps_place_link_object_get_type()
  */
-int maps_place_link_object_set_type(maps_place_link_object_h link, const char *type);
+int maps_place_link_object_set_type(maps_place_link_object_h link, const char *type) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place link object name.
  * @details This function sets the place link object name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -137,7 +136,7 @@ int maps_place_link_object_set_type(maps_place_link_object_h link, const char *t
  * @see maps_place_link_object_create()
  * @see maps_place_link_object_get_name()
  */
-int maps_place_link_object_set_name(maps_place_link_object_h link, const char *name);
+int maps_place_link_object_set_name(maps_place_link_object_h link, const char *name) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index dce0fc0..cb218d6 100644 (file)
 #ifndef __MAPS_PLACE_MEDIA_H__
 #define __MAPS_PLACE_MEDIA_H__
 
-
+#include <tizen.h>
 #include <maps_place_link_object.h>
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_MEDIA_MODULE Media
  * @file maps_place_media.h
@@ -40,7 +39,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Media handle.
  * @details The handle of Place Media instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -56,7 +55,7 @@ typedef void *maps_place_media_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place media handle and releases all its resources.
  * @details This function destroys the place media handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -68,11 +67,11 @@ typedef void *maps_place_media_h;
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_media_clone()
  */
-int maps_place_media_destroy(maps_place_media_h media);
+int maps_place_media_destroy(maps_place_media_h media) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place media handle.
  * @details This function clones the place media handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -87,14 +86,14 @@ int maps_place_media_destroy(maps_place_media_h media);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_media_destroy()
  */
-int maps_place_media_clone(const maps_place_media_h origin, maps_place_media_h *cloned);
+int maps_place_media_clone(const maps_place_media_h origin, maps_place_media_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*---------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place media attribution.
  * @details This function gets the place media attribution.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -107,11 +106,11 @@ int maps_place_media_clone(const maps_place_media_h origin, maps_place_media_h *
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_media_get_attribution(const maps_place_media_h media, char **attribution);
+int maps_place_media_get_attribution(const maps_place_media_h media, char **attribution) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place media supplier link.
  * @details This function gets the place media supplier link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -125,11 +124,11 @@ int maps_place_media_get_attribution(const maps_place_media_h media, char **attr
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_place_link_object_h
  */
-int maps_place_media_get_supplier(const maps_place_media_h media, maps_place_link_object_h *supplier);
+int maps_place_media_get_supplier(const maps_place_media_h media, maps_place_link_object_h *supplier) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place media "via" link.
  * @details This function gets the place media "via" link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -143,7 +142,7 @@ int maps_place_media_get_supplier(const maps_place_media_h media, maps_place_lin
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_place_link_object_h
  */
-int maps_place_media_get_via(const maps_place_media_h media, maps_place_link_object_h *via);
+int maps_place_media_get_via(const maps_place_media_h media, maps_place_link_object_h *via) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 2ccb124..8810e4b 100644 (file)
@@ -20,7 +20,6 @@
 #include <maps_place_media.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_MEDIA_MODULE Media
  *
@@ -39,7 +38,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place media handle.
  * @details This function creates a new place media handle and allocates all
  * needed resources.
@@ -57,10 +56,10 @@ extern "C" {
  * @see maps_place_media_destroy()
  * @see maps_place_media_clone()
  */
-int maps_place_media_create(maps_place_media_h *media);
+int maps_place_media_create(maps_place_media_h *media) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place media attribution.
  * @details This function sets the place media attribution.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,10 +76,10 @@ int maps_place_media_create(maps_place_media_h *media);
  * @see maps_place_media_create()
  * @see maps_place_media_get_attribution()
  */
-int maps_place_media_set_attribution(maps_place_media_h media, const char *attribution);
+int maps_place_media_set_attribution(maps_place_media_h media, const char *attribution) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place media supplier link.
  * @details This function sets the place media supplier link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -97,10 +96,10 @@ int maps_place_media_set_attribution(maps_place_media_h media, const char *attri
  * @see maps_place_media_create()
  * @see maps_place_media_get_supplier()
  */
-int maps_place_media_set_supplier(maps_place_media_h media, const maps_place_link_object_h supplier);
+int maps_place_media_set_supplier(maps_place_media_h media, const maps_place_link_object_h supplier) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place media via link.
  * @details This function sets the place media via link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -117,7 +116,7 @@ int maps_place_media_set_supplier(maps_place_media_h media, const maps_place_lin
  * @see maps_place_media_create()
  * @see maps_place_media_get_via()
  */
-int maps_place_media_set_via(maps_place_media_h media, const maps_place_link_object_h via);
+int maps_place_media_set_via(maps_place_media_h media, const maps_place_link_object_h via) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 955acea..926b533 100644 (file)
@@ -17,6 +17,7 @@
 #ifndef __MAPS_PLACE_PLUGIN_H__
 #define __MAPS_PLACE_PLUGIN_H__
 
+#include <tizen.h>
 #include <maps_place.h>
 #include <maps_extra_types.h>
 
@@ -26,7 +27,6 @@
  */
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_DATA_MODULE Place
  *
@@ -45,7 +45,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place handle.
  * @details This function creates a new place handle and allocates all needed
  * resources.
@@ -63,10 +63,10 @@ extern "C" {
  * @see maps_place_destroy()
  * @see maps_place_clone()
  */
-int maps_place_create(maps_place_h *place);
+int maps_place_create(maps_place_h *place) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place ID.
  * @details This function sets the place ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -83,10 +83,10 @@ int maps_place_create(maps_place_h *place);
  * @see maps_place_create()
  * @see maps_place_get_related_link()
  */
-int maps_place_set_id(maps_place_h place, const char *id);
+int maps_place_set_id(maps_place_h place, const char *id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place name.
  * @details This function sets the place name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -103,10 +103,10 @@ int maps_place_set_id(maps_place_h place, const char *id);
  * @see maps_place_create()
  * @see maps_place_get_name()
  */
-int maps_place_set_name(maps_place_h place, const char *name);
+int maps_place_set_name(maps_place_h place, const char *name) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place location.
  * @details This function sets the place location.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -123,10 +123,10 @@ int maps_place_set_name(maps_place_h place, const char *name);
  * @see maps_place_create()
  * @see maps_place_get_location()
  */
-int maps_place_set_location(maps_place_h place, const maps_coordinates_h location);
+int maps_place_set_location(maps_place_h place, const maps_coordinates_h location) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place distance from the center of the location.
  * @details This function sets the place distance from the center of the
  * location.
@@ -144,10 +144,10 @@ int maps_place_set_location(maps_place_h place, const maps_coordinates_h locatio
  * @see maps_place_create()
  * @see maps_place_get_distance()
  */
-int maps_place_set_distance(maps_place_h place, const int distance);
+int maps_place_set_distance(maps_place_h place, const int distance) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place address.
  * @details This function sets the place address.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -164,10 +164,10 @@ int maps_place_set_distance(maps_place_h place, const int distance);
  * @see maps_place_create()
  * @see maps_place_get_address()
  */
-int maps_place_set_address(maps_place_h place, const maps_address_h address);
+int maps_place_set_address(maps_place_h place, const maps_address_h address) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place categories.
  * @details This function sets the place categories.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -184,10 +184,10 @@ int maps_place_set_address(maps_place_h place, const maps_address_h address);
  * @see maps_place_create()
  * @see maps_place_foreach_category()
  */
-int maps_place_set_categories(maps_place_h place, const maps_item_list_h categories);
+int maps_place_set_categories(maps_place_h place, const maps_item_list_h categories) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place view URI.
  * @details This function sets the place URI.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -204,10 +204,10 @@ int maps_place_set_categories(maps_place_h place, const maps_item_list_h categor
  * @see maps_place_create()
  * @see maps_place_get_uri()
  */
-int maps_place_set_uri(maps_place_h place, const char *uri);
+int maps_place_set_uri(maps_place_h place, const char *uri) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place attributes.
  * @details This function sets the place attributes.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -224,10 +224,10 @@ int maps_place_set_uri(maps_place_h place, const char *uri);
  * @see maps_place_create()
  * @see maps_place_foreach_attribute()
  */
-int maps_place_set_attributes(maps_place_h place, const maps_item_list_h attributes);
+int maps_place_set_attributes(maps_place_h place, const maps_item_list_h attributes) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place contacts.
  * @details This function sets the place contacts.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -244,10 +244,10 @@ int maps_place_set_attributes(maps_place_h place, const maps_item_list_h attribu
  * @see maps_place_create()
  * @see maps_place_foreach_contact()
  */
-int maps_place_set_contacts(maps_place_h place, const maps_item_list_h contacts);
+int maps_place_set_contacts(maps_place_h place, const maps_item_list_h contacts) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place editorials.
  * @details This function sets the place editorials.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -264,10 +264,10 @@ int maps_place_set_contacts(maps_place_h place, const maps_item_list_h contacts)
  * @see maps_place_create()
  * @see maps_place_foreach_editorial()
  */
-int maps_place_set_editorials(maps_place_h place, const maps_item_list_h editorials);
+int maps_place_set_editorials(maps_place_h place, const maps_item_list_h editorials) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place images.
  * @details This function sets the place images.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -284,10 +284,10 @@ int maps_place_set_editorials(maps_place_h place, const maps_item_list_h editori
  * @see maps_place_create()
  * @see maps_place_foreach_image()
  */
-int maps_place_set_images(maps_place_h place, const maps_item_list_h images);
+int maps_place_set_images(maps_place_h place, const maps_item_list_h images) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place review.
  * @details This function sets the place reviews.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -304,10 +304,10 @@ int maps_place_set_images(maps_place_h place, const maps_item_list_h images);
  * @see maps_place_create()
  * @see maps_place_foreach_review()
  */
-int maps_place_set_reviews(maps_place_h place, const maps_item_list_h reviews);
+int maps_place_set_reviews(maps_place_h place, const maps_item_list_h reviews) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place properties.
  * @details This function sets the place properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -324,10 +324,10 @@ int maps_place_set_reviews(maps_place_h place, const maps_item_list_h reviews);
  * @see maps_place_create()
  * @see maps_place_foreach_property()
  */
-int maps_place_set_properties(maps_place_h place, const maps_item_hashtable_h properties);
+int maps_place_set_properties(maps_place_h place, const maps_item_hashtable_h properties) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place rating.
  * @details This function sets the place rating.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -344,10 +344,10 @@ int maps_place_set_properties(maps_place_h place, const maps_item_hashtable_h pr
  * @see maps_place_create()
  * @see maps_place_get_rating()
  */
-int maps_place_set_rating(maps_place_h place, const maps_place_rating_h rating);
+int maps_place_set_rating(maps_place_h place, const maps_place_rating_h rating) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place supplier link.
  * @details This function sets the place supplier link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -364,10 +364,10 @@ int maps_place_set_rating(maps_place_h place, const maps_place_rating_h rating);
  * @see maps_place_create()
  * @see maps_place_get_supplier_link()
  */
-int maps_place_set_supplier_link(maps_place_h place, const maps_place_link_object_h supplier);
+int maps_place_set_supplier_link(maps_place_h place, const maps_place_link_object_h supplier) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place related link.
  * @details This function sets the place related link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -384,10 +384,10 @@ int maps_place_set_supplier_link(maps_place_h place, const maps_place_link_objec
  * @see maps_place_create()
  * @see maps_place_get_related_link()
  */
-int maps_place_set_related_link(maps_place_h place, const maps_place_link_object_h related);
+int maps_place_set_related_link(maps_place_h place, const maps_place_link_object_h related) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a place list having a set of places.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  *
@@ -400,7 +400,7 @@ int maps_place_set_related_link(maps_place_h place, const maps_place_link_object
  *
  * @see maps_place_list_destroy()
  */
-int maps_place_list_create(maps_place_list_h *place_list);
+int maps_place_list_create(maps_place_list_h *place_list) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index f7e9b06..e3e2da1 100644 (file)
 #ifndef __MAPS_PLACE_RATING_H__
 #define __MAPS_PLACE_RATING_H__
 
-
+#include <tizen.h>
 #include <time.h>
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_RATING_MODULE Rating
  * @file maps_place_rating.h
@@ -40,7 +39,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Rating handle.
  * @details The handle of Place Rating instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -56,7 +55,7 @@ typedef void *maps_place_rating_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place rating handle and releases all its resources.
  * @details This function destroys the place rating handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -68,11 +67,11 @@ typedef void *maps_place_rating_h;
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_rating_clone()
  */
-int maps_place_rating_destroy(maps_place_rating_h rating);
+int maps_place_rating_destroy(maps_place_rating_h rating) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place rating handle.
  * @details This function clones the place rating handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -87,14 +86,14 @@ int maps_place_rating_destroy(maps_place_rating_h rating);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_rating_destroy()
  */
-int maps_place_rating_clone(const maps_place_rating_h origin, maps_place_rating_h *cloned);
+int maps_place_rating_clone(const maps_place_rating_h origin, maps_place_rating_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place rating count.
  * @details This function gets the place rating count.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -106,11 +105,11 @@ int maps_place_rating_clone(const maps_place_rating_h origin, maps_place_rating_
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_rating_get_count(const maps_place_rating_h rating, int *count);
+int maps_place_rating_get_count(const maps_place_rating_h rating, int *count) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place rating average.
  * @details This function gets the place rating average.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -122,7 +121,7 @@ int maps_place_rating_get_count(const maps_place_rating_h rating, int *count);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_rating_get_average(const maps_place_rating_h rating, double *average);
+int maps_place_rating_get_average(const maps_place_rating_h rating, double *average) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index b777ad6..e518ca5 100644 (file)
 #ifndef __MAPS_PLACE_RATING_PLUGIN_H__
 #define __MAPS_PLACE_RATING_PLUGIN_H__
 
+#include <tizen.h>
 #include <maps_place_rating.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_RATING_MODULE Rating
  *
@@ -39,7 +39,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place rating handle.
  * @details This function creates a new place rating handle and allocates all
  * needed resources.
@@ -57,10 +57,10 @@ extern "C" {
  * @see maps_place_rating_destroy()
  * @see maps_place_rating_clone()
  */
-int maps_place_rating_create(maps_place_rating_h *rating);
+int maps_place_rating_create(maps_place_rating_h *rating) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place rating count.
  * @details This function sets the place rating count.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,10 +77,10 @@ int maps_place_rating_create(maps_place_rating_h *rating);
  * @see maps_place_rating_create()
  * @see maps_place_rating_get_count()
  */
-int maps_place_rating_set_count(maps_place_rating_h rating, const int count);
+int maps_place_rating_set_count(maps_place_rating_h rating, const int count) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place rating average.
  * @details This function sets the place rating average.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -97,7 +97,7 @@ int maps_place_rating_set_count(maps_place_rating_h rating, const int count);
  * @see maps_place_rating_create()
  * @see maps_place_rating_get_average()
  */
-int maps_place_rating_set_average(maps_place_rating_h rating, const double average);
+int maps_place_rating_set_average(maps_place_rating_h rating, const double average) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index e461baf..7842aaa 100644 (file)
 #ifndef __MAPS_PLACE_REVIEW_H__
 #define __MAPS_PLACE_REVIEW_H__
 
-
+#include <tizen.h>
 #include <maps_place_media.h>
 #include <maps_place_link_object.h>
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_REVIEW_MODULE Review
  * @file maps_place_review.h
@@ -41,7 +40,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place Review handle.
  * @details The handle of Place Review instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -57,7 +56,7 @@ typedef void *maps_place_review_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place review handle and releases all its resources.
  * @details This function destroys the place review handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -69,11 +68,11 @@ typedef void *maps_place_review_h;
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_review_clone()
  */
-int maps_place_review_destroy(maps_place_review_h review);
+int maps_place_review_destroy(maps_place_review_h review) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place review handle.
  * @details This function clones the place review handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -88,14 +87,14 @@ int maps_place_review_destroy(maps_place_review_h review);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_review_destroy()
  */
-int maps_place_review_clone(const maps_place_review_h origin, maps_place_review_h *cloned);
+int maps_place_review_clone(const maps_place_review_h origin, maps_place_review_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place review date.
  * @details This function gets the place review date.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -108,11 +107,11 @@ int maps_place_review_clone(const maps_place_review_h origin, maps_place_review_
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_review_get_date(const maps_place_review_h review, char **date);
+int maps_place_review_get_date(const maps_place_review_h review, char **date) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place review title.
  * @details This function gets the place review title.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -125,11 +124,11 @@ int maps_place_review_get_date(const maps_place_review_h review, char **date);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_review_get_title(const maps_place_review_h review, char **title);
+int maps_place_review_get_title(const maps_place_review_h review, char **title) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place review rating.
  * @details This function gets the place review rating.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -141,11 +140,11 @@ int maps_place_review_get_title(const maps_place_review_h review, char **title);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_review_get_rating(const maps_place_review_h review, double *rating);
+int maps_place_review_get_rating(const maps_place_review_h review, double *rating) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place review description.
  * @details This function gets the place review description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -158,11 +157,11 @@ int maps_place_review_get_rating(const maps_place_review_h review, double *ratin
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_review_get_description(const maps_place_review_h review, char **description);
+int maps_place_review_get_description(const maps_place_review_h review, char **description) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place review language.
  * @details This function gets the place review language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -175,11 +174,11 @@ int maps_place_review_get_description(const maps_place_review_h review, char **d
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_review_get_language(const maps_place_review_h review, char **language);
+int maps_place_review_get_language(const maps_place_review_h review, char **language) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place review media.
  * @details This function gets the place review media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -193,11 +192,11 @@ int maps_place_review_get_language(const maps_place_review_h review, char **lang
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_place_media_h
  */
-int maps_place_review_get_media(const maps_place_review_h review, maps_place_media_h *media);
+int maps_place_review_get_media(const maps_place_review_h review, maps_place_media_h *media) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place review user link.
  * @details This function gets the place review user link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -211,7 +210,7 @@ int maps_place_review_get_media(const maps_place_review_h review, maps_place_med
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_place_link_object_h
  */
-int maps_place_review_get_user_link(const maps_place_review_h review, maps_place_link_object_h *user);
+int maps_place_review_get_user_link(const maps_place_review_h review, maps_place_link_object_h *user) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 5bf9ecd..9e2346f 100644 (file)
@@ -23,7 +23,6 @@
 #include <maps_place_review.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_REVIEW_MODULE Review
  *
@@ -42,7 +41,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place review handle.
  * @details This function creates a new place review handle and allocates all
  * needed resources.
@@ -60,10 +59,10 @@ extern "C" {
  * @see maps_place_review_destroy()
  * @see maps_place_review_clone()
  */
-int maps_place_review_create(maps_place_review_h *review);
+int maps_place_review_create(maps_place_review_h *review) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place review date.
  * @details This function sets the place review date.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -80,10 +79,10 @@ int maps_place_review_create(maps_place_review_h *review);
  * @see maps_place_review_create()
  * @see maps_place_review_get_date()
  */
-int maps_place_review_set_date(maps_place_review_h review, const char *date);
+int maps_place_review_set_date(maps_place_review_h review, const char *date) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place review title.
  * @details This function sets the place review title.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -100,10 +99,10 @@ int maps_place_review_set_date(maps_place_review_h review, const char *date);
  * @see maps_place_review_create()
  * @see maps_place_review_get_title()
  */
-int maps_place_review_set_title(maps_place_review_h review, const char *title);
+int maps_place_review_set_title(maps_place_review_h review, const char *title) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place review rating.
  * @details This function sets the place review rating.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -120,10 +119,10 @@ int maps_place_review_set_title(maps_place_review_h review, const char *title);
  * @see maps_place_review_create()
  * @see maps_place_review_get_rating()
  */
-int maps_place_review_set_rating(maps_place_review_h review, const double rating);
+int maps_place_review_set_rating(maps_place_review_h review, const double rating) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place review description.
  * @details This function sets the place review description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -140,10 +139,10 @@ int maps_place_review_set_rating(maps_place_review_h review, const double rating
  * @see maps_place_review_create()
  * @see maps_place_review_get_description()
  */
-int maps_place_review_set_description(maps_place_review_h review, const char *description);
+int maps_place_review_set_description(maps_place_review_h review, const char *description) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place review language.
  * @details This function sets the place review language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -160,10 +159,10 @@ int maps_place_review_set_description(maps_place_review_h review, const char *de
  * @see maps_place_review_create()
  * @see maps_place_review_get_language()
  */
-int maps_place_review_set_language(maps_place_review_h review, const char *language);
+int maps_place_review_set_language(maps_place_review_h review, const char *language) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place review media.
  * @details This function sets the place review media.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -181,10 +180,10 @@ int maps_place_review_set_language(maps_place_review_h review, const char *langu
  * @see maps_place_review_get_media()
  * @see #maps_place_media_h
  */
-int maps_place_review_set_media(maps_place_review_h review, const maps_place_media_h media);
+int maps_place_review_set_media(maps_place_review_h review, const maps_place_media_h media) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place review user link.
  * @details This function sets the place review user link.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -202,7 +201,7 @@ int maps_place_review_set_media(maps_place_review_h review, const maps_place_med
  * @see maps_place_review_get_user_link()
  * @see #maps_place_link_object_h
  */
-int maps_place_review_set_user_link(maps_place_review_h review, const maps_place_link_object_h user);
+int maps_place_review_set_user_link(maps_place_review_h review, const maps_place_link_object_h user) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 36c6562..57cc35e 100644 (file)
@@ -18,9 +18,9 @@
 #ifndef __MAPS_PLACE_URL_H__
 #define __MAPS_PLACE_URL_H__
 
+#include <tizen.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLACE_URL_MODULE URL
  * @file maps_place_url.h
@@ -37,7 +37,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Place URL handle.
  * @details The handle of Place URL instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -53,7 +53,7 @@ typedef void *maps_place_url_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the place URL handle and releases all its resources.
  * @details This function destroys the place URL handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -65,11 +65,11 @@ typedef void *maps_place_url_h;
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_url_clone()
  */
-int maps_place_url_destroy(maps_place_url_h url);
+int maps_place_url_destroy(maps_place_url_h url) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the place URL handle.
  * @details This function clones the place URL handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -84,14 +84,14 @@ int maps_place_url_destroy(maps_place_url_h url);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_place_url_destroy()
  */
-int maps_place_url_clone(const maps_place_url_h origin, maps_place_url_h *cloned);
+int maps_place_url_clone(const maps_place_url_h origin, maps_place_url_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place URL path.
  * @details This function gets the place URL path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -104,11 +104,11 @@ int maps_place_url_clone(const maps_place_url_h origin, maps_place_url_h *cloned
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_url_get_path(const maps_place_url_h url, char **path);
+int maps_place_url_get_path(const maps_place_url_h url, char **path) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the place URL description.
  * @details This function gets the place URL description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -121,7 +121,7 @@ int maps_place_url_get_path(const maps_place_url_h url, char **path);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_place_url_get_description(const maps_place_url_h url, char **desc);
+int maps_place_url_get_description(const maps_place_url_h url, char **desc) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 7b91dcb..52a1b64 100644 (file)
 #ifndef __MAPS_PLACE_URL_PLUGIN_H__
 #define __MAPS_PLACE_URL_PLUGIN_H__
 
+#include <tizen.h>
 #include <maps_place_url.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_PLACE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_PLACE_URL_MODULE URL
  *
@@ -39,7 +39,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new place URL handle.
  * @details This function creates a new place URL handle and allocates all
  * needed resources.
@@ -57,10 +57,10 @@ extern "C" {
  * @see maps_place_url_destroy()
  * @see maps_place_url_clone()
  */
-int maps_place_url_create(maps_place_url_h *url);
+int maps_place_url_create(maps_place_url_h *url) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place URL path.
  * @details This function sets the place URL path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,10 +77,10 @@ int maps_place_url_create(maps_place_url_h *url);
  * @see maps_place_url_create()
  * @see maps_place_url_get_path()
  */
-int maps_place_url_set_path(maps_place_url_h url, const char *path);
+int maps_place_url_set_path(maps_place_url_h url, const char *path) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the place URL description.
  * @details This function sets the place URL description.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -97,7 +97,7 @@ int maps_place_url_set_path(maps_place_url_h url, const char *path);
  * @see maps_place_url_create()
  * @see maps_place_url_get_description()
  */
-int maps_place_url_set_description(maps_place_url_h url, const char *description);
+int maps_place_url_set_description(maps_place_url_h url, const char *description) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 42be7a5..26eba0e 100644 (file)
@@ -26,7 +26,6 @@
 #include <maps_service_internal.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_AND_PROVIDERS_MODULE Maps Plugin and Providers
  *
@@ -43,7 +42,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Maps Plugin handle.
  * @details The handle of Maps Plugin instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -56,7 +55,7 @@ typedef void *maps_plugin_h;
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Initialize a new Maps Plugin.
  * @details A maps plugin handle can be used to access a specified plugin.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -73,10 +72,10 @@ typedef void *maps_plugin_h;
  *
  * @see maps_plugin_shutdown()
  */
-int maps_plugin_init(maps_plugin_h *plugin);
+int maps_plugin_init(maps_plugin_h *plugin) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the Maps Plugin handle.
  * @details This function destroys the maps plugin handle and releases all its
  * resources.
@@ -90,10 +89,10 @@ int maps_plugin_init(maps_plugin_h *plugin);
  *
  * @see maps_plugin_init()
  */
-int maps_plugin_shutdown(maps_plugin_h plugin);
+int maps_plugin_shutdown(maps_plugin_h plugin) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Returns a plugin info.
  * @details This function returns a plugin info.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -108,7 +107,7 @@ int maps_plugin_shutdown(maps_plugin_h plugin);
  *
  * @see maps_plugin_init()
  */
-int maps_plugin_get_info(maps_plugin_info_h *info);
+int maps_plugin_get_info(maps_plugin_info_h *info) TIZEN_DEPRECATED_API;
 
 /*----------------------------------------------------------------------------*/
 /*
@@ -116,7 +115,7 @@ int maps_plugin_get_info(maps_plugin_info_h *info);
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the Maps Key to be used in the Maps Plugin requests.
  * @details This function sets the Maps Key which will be used in each Maps
  * Plugin request to Maps Provider.
@@ -135,10 +134,10 @@ int maps_plugin_get_info(maps_plugin_info_h *info);
  *
  * @see maps_plugin_get_provider_key()
  */
-int maps_plugin_set_provider_key(const char *provider_key);
+int maps_plugin_set_provider_key(const char *provider_key) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the Maps Key which is to be used in the Maps Service
  * requests
  * @details This function gets the Maps Key which is to be used in each Maps
@@ -155,10 +154,10 @@ int maps_plugin_set_provider_key(const char *provider_key);
  *
  * @see maps_plugin_set_provider_key()
  */
-int maps_plugin_get_provider_key(char **provider_key);
+int maps_plugin_get_provider_key(char **provider_key) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the Maps Preference.
  * @details This function sets the Maps Preferences which are used in each Maps
  * Plugin request to Maps Provider.
@@ -173,10 +172,10 @@ int maps_plugin_get_provider_key(char **provider_key);
  *
  * @see maps_plugin_get_preference()
  */
-int maps_plugin_set_preference(maps_item_hashtable_h preference);
+int maps_plugin_set_preference(maps_item_hashtable_h preference) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the Maps Preference.
  * @details This function gets the Maps Preferences which are used in each Maps
  * Plugin request to Maps Provider.
@@ -192,10 +191,10 @@ int maps_plugin_set_preference(maps_item_hashtable_h preference);
  *
  * @see maps_plugin_set_preference()
  */
-int maps_plugin_get_preference(maps_item_hashtable_h *preference);
+int maps_plugin_get_preference(maps_item_hashtable_h *preference) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Checks if the Maps Plugin supports a request.
  * @details This function checks if the Maps Plugin supports a specified request.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -211,10 +210,10 @@ int maps_plugin_get_preference(maps_item_hashtable_h *preference);
  *
  * @see maps_service_create()
  */
-int maps_plugin_is_service_supported(maps_service_e service, bool *supported);
+int maps_plugin_is_service_supported(maps_service_e service, bool *supported) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Checks if the Maps Plugin supports a data feature.
  * @details This function checks if the Maps Plugin supports a specified data feature.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -230,7 +229,7 @@ int maps_plugin_is_service_supported(maps_service_e service, bool *supported);
  *
  * @see maps_service_create()
  */
-int maps_plugin_is_data_supported(maps_service_data_e data, bool *supported);
+int maps_plugin_is_data_supported(maps_service_data_e data, bool *supported) TIZEN_DEPRECATED_API;
 
 /*----------------------------------------------------------------------------*/
 /*
@@ -238,7 +237,7 @@ int maps_plugin_is_data_supported(maps_service_data_e data, bool *supported);
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the position coordinates for a given address.
  * @details This function obtains position coordinates for a given free-formed
  * address string.
@@ -274,10 +273,10 @@ int maps_plugin_is_data_supported(maps_service_data_e data, bool *supported);
  * @see maps_plugin_cancel_request()
  * @see maps_plugin_reverse_geocode()
  */
-int maps_plugin_geocode(const char *address, const maps_item_hashtable_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id);
+int maps_plugin_geocode(const char *address, const maps_item_hashtable_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the position for a given address, within the specified
  * bounding box.
  * @details This function obtains position coordinates for a given free-formed
@@ -320,10 +319,10 @@ int maps_plugin_geocode(const char *address, const maps_item_hashtable_h prefere
  * @see maps_plugin_cancel_request()
  * @see maps_plugin_reverse_geocode()
  */
-int maps_plugin_geocode_inside_area(const char *address, const maps_area_h bounds, const maps_item_hashtable_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id);
+int maps_plugin_geocode_inside_area(const char *address, const maps_area_h bounds, const maps_item_hashtable_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the position coordinates for a given address.
  * @details This function obtains position coordinates for a given structured
  * address.
@@ -360,10 +359,10 @@ int maps_plugin_geocode_inside_area(const char *address, const maps_area_h bound
  * @see maps_plugin_cancel_request()
  * @see maps_plugin_reverse_geocode()
  */
-int maps_plugin_geocode_by_structured_address(const maps_address_h address, const maps_preference_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id);
+int maps_plugin_geocode_by_structured_address(const maps_address_h address, const maps_preference_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the address for a given position coordinates.
  * @details This function obtains structured address information for a given
  * position coordinates.
@@ -399,10 +398,10 @@ int maps_plugin_geocode_by_structured_address(const maps_address_h address, cons
  * @see maps_plugin_cancel_request()
  * @see maps_plugin_geocode()
  */
-int maps_plugin_reverse_geocode(double latitude, double longitude, const maps_item_hashtable_h preference, maps_service_reverse_geocode_cb callback, void *user_data, int *request_id);
+int maps_plugin_reverse_geocode(double latitude, double longitude, const maps_item_hashtable_h preference, maps_service_reverse_geocode_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the address list for a given position coordinates list.
  * @details This function obtains structured address information for a given
  * position coordinates.
@@ -436,7 +435,7 @@ int maps_plugin_reverse_geocode(double latitude, double longitude, const maps_it
  * @see maps_service_multi_reverse_geocode_cb()
  * @see maps_plugin_cancel_request()
  */
-int maps_plugin_multi_reverse_geocode(const maps_coordinates_list_h geocode_list, const maps_preference_h preference, maps_service_multi_reverse_geocode_cb callback, void *user_data, int *request_id);
+int maps_plugin_multi_reverse_geocode(const maps_coordinates_list_h geocode_list, const maps_preference_h preference, maps_service_multi_reverse_geocode_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
@@ -445,7 +444,7 @@ int maps_plugin_multi_reverse_geocode(const maps_coordinates_list_h geocode_list
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries a Place information by a coordinates position and a
  * distance.
  * @details This function obtains the Place information for a specified distance
@@ -486,10 +485,10 @@ int maps_plugin_multi_reverse_geocode(const maps_coordinates_list_h geocode_list
  * @see maps_plugin_cancel_request()
  * @see maps_service_search_place_cb()
  */
-int maps_plugin_search_place(const maps_coordinates_h position, int distance, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id);
+int maps_plugin_search_place(const maps_coordinates_h position, int distance, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries a Place information by a coordinates boundary.
  * @details This function obtains the Place information for a specified
  * coordinates boundary.
@@ -529,10 +528,10 @@ int maps_plugin_search_place(const maps_coordinates_h position, int distance, co
  * @see maps_plugin_cancel_request()
  * @see maps_service_search_place_cb()
  */
-int maps_plugin_search_place_by_area(const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id);
+int maps_plugin_search_place_by_area(const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries a Place information by a free-formed address string.
  * @details This function obtains the Place information for a specified free-
  * formed address string.
@@ -573,10 +572,10 @@ int maps_plugin_search_place_by_area(const maps_area_h boundary, const maps_plac
  * @see maps_plugin_cancel_request()
  * @see maps_service_search_place_cb()
  */
-int maps_plugin_search_place_by_address(const char *address, const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id);
+int maps_plugin_search_place_by_address(const char *address, const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries a brief Place information by a coordinates boundary.
  * @details This function obtains the brief Place information for a specified coordinates boundary.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -611,10 +610,10 @@ int maps_plugin_search_place_by_address(const char *address, const maps_area_h b
  * @see maps_plugin_cancel_request()
  * @see maps_service_search_place_list_cb()
  */
-int maps_plugin_search_place_list(const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_list_cb callback, void *user_data, int *request_id);
+int maps_plugin_search_place_list(const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_list_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries a Detail place information by a place uri.
  * @details This function obtains the Detail place information for a specified place uri
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -649,7 +648,7 @@ int maps_plugin_search_place_list(const maps_area_h boundary, const maps_place_f
  * @see maps_plugin_cancel_request()
  * @see maps_service_get_place_details_cb()
  */
-int maps_plugin_get_place_details(const char *url, maps_service_get_place_details_cb callback, void *user_data, int *request_id);
+int maps_plugin_get_place_details(const char *url, maps_service_get_place_details_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /*----------------------------------------------------------------------------*/
 /*
@@ -657,7 +656,7 @@ int maps_plugin_get_place_details(const char *url, maps_service_get_place_detail
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries the Route from origin coordinate to a destination.
  * @details This function obtains the Route information for a specified origin
  * and destination coordinates.
@@ -692,10 +691,10 @@ int maps_plugin_get_place_details(const char *url, maps_service_get_place_detail
  * @see maps_plugin_cancel_request()
  * @see maps_service_search_route_cb()
  */
-int maps_plugin_search_route(const maps_coordinates_h origin, const maps_coordinates_h destination, maps_preference_h preference, maps_service_search_route_cb callback, void *user_data, int *request_id);
+int maps_plugin_search_route(const maps_coordinates_h origin, const maps_coordinates_h destination, maps_preference_h preference, maps_service_search_route_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries the Route, passing through a specified way points.
  * @details This function obtains the Route information for the Route, passing
  * through a specified set of way points.
@@ -730,7 +729,7 @@ int maps_plugin_search_route(const maps_coordinates_h origin, const maps_coordin
  * @see maps_plugin_cancel_request()
  * @see maps_service_search_route_cb()
  */
-int maps_plugin_search_route_waypoints(const maps_coordinates_h *waypoint_list, int waypoint_num, maps_preference_h preference, maps_service_search_route_cb callback, void *user_data, int *request_id);
+int maps_plugin_search_route_waypoints(const maps_coordinates_h *waypoint_list, int waypoint_num, maps_preference_h preference, maps_service_search_route_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /*----------------------------------------------------------------------------*/
 /*
@@ -738,7 +737,7 @@ int maps_plugin_search_route_waypoints(const maps_coordinates_h *waypoint_list,
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Cancels the service request.
  * @details This function cancels the service request initiated by geocode,
  * route or place search.
@@ -781,13 +780,13 @@ int maps_plugin_search_route_waypoints(const maps_coordinates_h *waypoint_list,
  * @see maps_plugin_search_route()
  * @see maps_plugin_search_route_waypoints()
  */
-int maps_plugin_cancel_request(int request_id);
+int maps_plugin_cancel_request(int request_id) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when the map initializing is finished.
  * @details The Plugin invokes this callback when the initializing of map is finished.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -798,10 +797,10 @@ int maps_plugin_cancel_request(int request_id);
  *
  * @see maps_plugin_render_map()
  */
-typedef void(*maps_plugin_map_view_ready_cb) (maps_view_h view);
+typedef void(*maps_plugin_map_view_ready_cb) (maps_view_h view) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Create a maps view.
  * @details This function create a maps view to the plugin.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -816,10 +815,10 @@ typedef void(*maps_plugin_map_view_ready_cb) (maps_view_h view);
  * @see #maps_view_h
  * @see maps_plugin_destroy_map_view()
  */
-int maps_plugin_create_map_view(maps_view_h view, maps_plugin_map_view_ready_cb callback);
+int maps_plugin_create_map_view(maps_view_h view, maps_plugin_map_view_ready_cb callback) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroy a maps view.
  * @details This function destroy a maps view to the plugin.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -833,10 +832,10 @@ int maps_plugin_create_map_view(maps_view_h view, maps_plugin_map_view_ready_cb
  * @see #maps_view_h
  * @see maps_plugin_create_map_view()
  */
-int maps_plugin_destroy_map_view(maps_view_h view);
+int maps_plugin_destroy_map_view(maps_view_h view) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Request a map rendering.
  * @details This function request a draw routine of the map location with a
  * specified zoom factor and rotation angle.
@@ -858,10 +857,10 @@ int maps_plugin_destroy_map_view(maps_view_h view);
  * @see maps_plugin_render_map_cb()
  * @see maps_plugin_draw_map()
  */
-int maps_plugin_render_map(maps_view_h view, const maps_coordinates_h coordinates, double zoom_factor, double rotation_angle);
+int maps_plugin_render_map(maps_view_h view, const maps_coordinates_h coordinates, double zoom_factor, double rotation_angle) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Request the Plugin to move a map on a given delta.
  * @details This function request the Plugin to move a map on a given delta
  * screen coordinates. The current values of zoom or orientation are
@@ -884,10 +883,10 @@ int maps_plugin_render_map(maps_view_h view, const maps_coordinates_h coordinate
  * @see maps_plugin_render_map()
  * @see maps_plugin_draw_map()
  */
-int maps_plugin_move_center(maps_view_h view, int delta_x, int delta_y);
+int maps_plugin_move_center(maps_view_h view, int delta_x, int delta_y) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enables or disables the scalebar.
  * @details This function enables or disables the scalebar.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -903,10 +902,10 @@ int maps_plugin_move_center(maps_view_h view, int delta_x, int delta_y);
  *
  * @see maps_plugin_get_scalebar()
  */
-int maps_plugin_set_scalebar(maps_view_h view, bool enable);
+int maps_plugin_set_scalebar(maps_view_h view, bool enable) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Checks whether the scalebar is enabled or not.
  * @details This function checks whether the scalebar is enabled or not.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -920,10 +919,10 @@ int maps_plugin_set_scalebar(maps_view_h view, bool enable);
  *
  * @see maps_plugin_set_scalebar()
  */
-int maps_plugin_get_scalebar(maps_view_h view, bool *enabled);
+int maps_plugin_get_scalebar(maps_view_h view, bool *enabled) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Notifies that the visual object is changed.
  * @details This function notifies the Plugin that the visual object is
  * changed. The possible causes of changes are enumerated in
@@ -941,10 +940,10 @@ int maps_plugin_get_scalebar(maps_view_h view, bool *enabled);
  *
  * @see maps_plugin_create()
  */
-int maps_plugin_on_object(maps_view_h view, const maps_view_object_h object, maps_view_object_operation_e operation);
+int maps_plugin_on_object(maps_view_h view, const maps_view_object_h object, maps_view_object_operation_e operation) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Converts screen coordinates to the geographical coordinates.
  * @details This function converts screen coordinates to the geographical
  * coordinates accordingly to the current maps settings.
@@ -963,10 +962,10 @@ int maps_plugin_on_object(maps_view_h view, const maps_view_object_h object, map
  * @see maps_plugin_geography_to_screen()
  * @see #maps_coordinates_h
  */
-int maps_plugin_screen_to_geography(maps_view_h view, int x, int y, maps_coordinates_h* coordinates);
+int maps_plugin_screen_to_geography(maps_view_h view, int x, int y, maps_coordinates_h* coordinates) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Converts geographical coordinates to the screen coordinates.
  * @details This function converts geographical coordinates to the screen
  * coordinates accordingly to the current maps settings.
@@ -985,10 +984,10 @@ int maps_plugin_screen_to_geography(maps_view_h view, int x, int y, maps_coordin
  * @see maps_plugin_screen_to_geography()
  * @see #maps_coordinates_h
  */
-int maps_plugin_geography_to_screen(maps_view_h view, const maps_coordinates_h coordinates, int* x, int* y);
+int maps_plugin_geography_to_screen(maps_view_h view, const maps_coordinates_h coordinates, int* x, int* y) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the minimal zooms level of the Map.
  * @details This function gets the minimally available zoom level of the Map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1000,10 +999,10 @@ int maps_plugin_geography_to_screen(maps_view_h view, const maps_coordinates_h c
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_plugin_get_min_zoom_level(maps_view_h view, int *min_zoom_level);
+int maps_plugin_get_min_zoom_level(maps_view_h view, int *min_zoom_level) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the maximal zooms level of the Map.
  * @details This function gets the maximally available zoom level of the Map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1015,10 +1014,10 @@ int maps_plugin_get_min_zoom_level(maps_view_h view, int *min_zoom_level);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_plugin_get_max_zoom_level(maps_view_h view, int *max_zoom_level);
+int maps_plugin_get_max_zoom_level(maps_view_h view, int *max_zoom_level) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the central coordinates of a Map.
  * @details This function gets the central coordinates of a Map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1035,10 +1034,10 @@ int maps_plugin_get_max_zoom_level(maps_view_h view, int *max_zoom_level);
  * @see maps_plugin_get_min_zoom_level()
  * @see maps_plugin_get_max_zoom_level
  */
-int maps_plugin_get_center(maps_view_h view, maps_coordinates_h *coordinates);
+int maps_plugin_get_center(maps_view_h view, maps_coordinates_h *coordinates) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets raw pixels of the Map.
  * @details This function gets raw pixels of the Map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1053,7 +1052,7 @@ int maps_plugin_get_center(maps_view_h view, maps_coordinates_h *coordinates);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_plugin_capture_snapshot(maps_view_h view, void **data, int *width, int *height, maps_view_colorspace_type_e *cs);
+int maps_plugin_capture_snapshot(maps_view_h view, void **data, int *width, int *height, maps_view_colorspace_type_e *cs) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 62abdec..95bef8a 100644 (file)
@@ -17,8 +17,9 @@
 #ifndef __MAPS_SERVICE_PLUGIN_INFO_H__
 #define __MAPS_SERVICE_PLUGIN_INFO_H__
 
+#include <tizen.h>
+
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_AND_PROVIDERS_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_INFO_MODULE Plugin info
  *
@@ -35,7 +36,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Maps Plugin Info handle
  * @details The handle of Maps Plugin Info instance.
  * @remarks To create the handle use maps_plugin_info_create().
@@ -52,7 +53,7 @@ typedef void *maps_plugin_info_h;
 /*----------------------------------------------------------------------------*/
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new plugin info handle.
  * @details This function creates a new plugin info handle and allocates all
  * needed resources.
@@ -70,10 +71,10 @@ typedef void *maps_plugin_info_h;
  * @see maps_plugin_info_destroy()
  * @see maps_plugin_info_clone()
  */
-int maps_plugin_info_create(maps_plugin_info_h *info);
+int maps_plugin_info_create(maps_plugin_info_h *info) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the plugin info handle and releases all its resources.
  * @details This function destroys the plugin info handle and releases all its
  * resources.
@@ -90,10 +91,10 @@ int maps_plugin_info_create(maps_plugin_info_h *info);
  * @see maps_plugin_info_create()
  * @see maps_plugin_info_clone()
  */
-int maps_plugin_info_destroy(maps_plugin_info_h info);
+int maps_plugin_info_destroy(maps_plugin_info_h info) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the plugin info handle.
  * @details This function clones the plugin info handle @a origin and all its
  * resources.
@@ -113,12 +114,12 @@ int maps_plugin_info_destroy(maps_plugin_info_h info);
  * @see maps_plugin_info_create()
  * @see maps_plugin_info_destroy()
  */
-int maps_plugin_info_clone(const maps_plugin_info_h origin, maps_plugin_info_h *cloned);
+int maps_plugin_info_clone(const maps_plugin_info_h origin, maps_plugin_info_h *cloned) TIZEN_DEPRECATED_API;
 
 /*----------------------------------------------------------------------------*/
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the plugin provider name.
  * @details This function gets the plugin provider name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -135,10 +136,10 @@ int maps_plugin_info_clone(const maps_plugin_info_h origin, maps_plugin_info_h *
  *
  * @see maps_plugin_info_create()
  */
-int maps_plugin_info_get_provider_name(const maps_plugin_info_h info, char **provider_name);
+int maps_plugin_info_get_provider_name(const maps_plugin_info_h info, char **provider_name) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the plugin provider name.
  * @details This function sets the plugin provider name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -154,7 +155,7 @@ int maps_plugin_info_get_provider_name(const maps_plugin_info_h info, char **pro
  *
  * @see maps_plugin_info_create()
  */
-int maps_plugin_info_set_provider_name(maps_plugin_info_h info, const char *provider_name);
+int maps_plugin_info_set_provider_name(maps_plugin_info_h info, const char *provider_name) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 8d6a7ad..3356850 100644 (file)
@@ -24,7 +24,6 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_CONTAINERS_MODULE
  * @defgroup CAPI_MAPS_CONTAINERS_MODULE_OBJECT_LIST Maps Object Lists
  *
@@ -37,7 +36,7 @@ extern "C" {
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Structure of the coordinates list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @remarks #maps_coordinates_list_h is a void pointer to the #maps_coordinates_list_s.
@@ -48,7 +47,7 @@ extern "C" {
 typedef GList maps_coordinates_list_s;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Structure of the address list.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  * @remarks #maps_address_list_h is a void pointer to the #maps_address_list_s.
index 869c302..f8b87da 100644 (file)
@@ -28,7 +28,6 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_PREFERENCE_MODULE Preference
  * @file maps_preference.h
@@ -56,7 +55,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating place type while searching the place.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -64,7 +63,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating sorting key while searching the place.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -72,7 +71,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating free-form address to avoid while computing the route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -80,7 +79,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating structured address to avoid while computing the route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -88,7 +87,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating circular geographical area to avoid while computing the route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -96,7 +95,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating rectangular geographical area to avoid while computing the route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  * @remarks The values are consist of top-left and bottom-right geo-coordinates, and comma or semicolon are used to delimit each value.\n
@@ -107,7 +106,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating that route should be computed within a specified bounding box.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -115,7 +114,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating that geometry parameters should be retrieved while route processing.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -123,7 +122,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating that route should be computed with geometry instructions.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -131,7 +130,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating that route should be computed with bounding box instructions.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -139,7 +138,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating that route should be computed correspondingly to retrieval instructions.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -147,7 +146,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the name of the preference indicating that route should be computed in accordance to real time traffic.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  * @remarks To enable realtime traffic, set the value to "true".
@@ -157,7 +156,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Maps Preference handle.
  * @details The Maps Preference handle can be obtained via call of maps_preference_create().\n
  *          To release the handle use maps_preference_destroy().\n
@@ -171,7 +170,7 @@ typedef void *maps_preference_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for allowed distance units.
  * @details This enumeration represents allowed distance units used in Maps Services.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -186,7 +185,7 @@ typedef enum _maps_distance_unit_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for allowed route optimization option.
  * @details This enumeration represents allowed route optimization option used in Route Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -205,7 +204,7 @@ typedef enum _maps_route_optimization_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for preferable route types.
  * @details This enumeration represents allowed route types used in Route Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -223,7 +222,7 @@ typedef enum _maps_route_transport_mode_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for route feature weights.
  * @details This enumeration represents allowed route feature weights used in Route Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -241,7 +240,7 @@ typedef enum _maps_route_feature_weight_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for route features.
  * @details This enumeration represents allowed route features used in Route Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -268,7 +267,7 @@ typedef enum _maps_route_request_feature_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Maps Properties.
  * @details This callback is invoked while iterating through the list of Maps Properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -283,14 +282,14 @@ typedef enum _maps_route_request_feature_e {
  * @pre maps_preference_foreach_property() will invoke this callback.
  * @see maps_preference_foreach_property()
  */
-typedef bool(*maps_preference_properties_cb) (int index, int total, char *key, char *value, void *user_data);
+typedef bool(*maps_preference_properties_cb) (int index, int total, char *key, char *value, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new maps preference handle.
  * @details This function creates a new maps preference handle and allocates all needed resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -306,11 +305,11 @@ typedef bool(*maps_preference_properties_cb) (int index, int total, char *key, c
  * @see maps_preference_destroy()
  * @see maps_preference_clone()
  */
-int maps_preference_create(maps_preference_h *preference);
+int maps_preference_create(maps_preference_h *preference) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the maps preference handle and releases all its resources.
  * @details This function destroys the maps preference handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -322,11 +321,11 @@ int maps_preference_create(maps_preference_h *preference);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_preference_clone()
  */
-int maps_preference_destroy(maps_preference_h preference);
+int maps_preference_destroy(maps_preference_h preference) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the maps preference handle.
  * @details This function clones the maps preference handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -341,14 +340,14 @@ int maps_preference_destroy(maps_preference_h preference);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_preference_destroy()
  */
-int maps_preference_clone(const maps_preference_h origin, maps_preference_h *cloned);
+int maps_preference_clone(const maps_preference_h origin, maps_preference_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the distance unit.
  * @details This function gets the maps distance unit.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -360,11 +359,11 @@ int maps_preference_clone(const maps_preference_h origin, maps_preference_h *clo
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_preference_get_distance_unit(const maps_preference_h preference, maps_distance_unit_e *unit);
+int maps_preference_get_distance_unit(const maps_preference_h preference, maps_distance_unit_e *unit) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the language.
  * @details This function gets the maps language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -377,11 +376,11 @@ int maps_preference_get_distance_unit(const maps_preference_h preference, maps_d
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_preference_get_language(const maps_preference_h preference, char **language);
+int maps_preference_get_language(const maps_preference_h preference, char **language) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the max amount of results.
  * @details This function gets the max amount of results.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -393,11 +392,11 @@ int maps_preference_get_language(const maps_preference_h preference, char **lang
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_preference_get_max_results(const maps_preference_h preference, int *max_results);
+int maps_preference_get_max_results(const maps_preference_h preference, int *max_results) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the country code.
  * @details This function gets the country code.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -410,11 +409,11 @@ int maps_preference_get_max_results(const maps_preference_h preference, int *max
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_preference_get_country_code(const maps_preference_h preference, char **country_code);
+int maps_preference_get_country_code(const maps_preference_h preference, char **country_code) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route optimization.
  * @details This function gets the route optimization.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -426,11 +425,11 @@ int maps_preference_get_country_code(const maps_preference_h preference, char **
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_preference_get_route_optimization(const maps_preference_h preference, maps_route_optimization_e * optimization);
+int maps_preference_get_route_optimization(const maps_preference_h preference, maps_route_optimization_e * optimization) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route transport mode.
  * @details This function gets the route transport mode.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -442,11 +441,11 @@ int maps_preference_get_route_optimization(const maps_preference_h preference, m
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_preference_get_route_transport_mode(const maps_preference_h preference, maps_route_transport_mode_e *transport_mode);
+int maps_preference_get_route_transport_mode(const maps_preference_h preference, maps_route_transport_mode_e *transport_mode) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route feature weight.
  * @details This function gets the route feature weight.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -458,11 +457,11 @@ int maps_preference_get_route_transport_mode(const maps_preference_h preference,
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_preference_get_route_feature_weight(const maps_preference_h preference, maps_route_feature_weight_e *feature_weight);
+int maps_preference_get_route_feature_weight(const maps_preference_h preference, maps_route_feature_weight_e *feature_weight) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route feature.
  * @details This function gets the route feature.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -474,11 +473,11 @@ int maps_preference_get_route_feature_weight(const maps_preference_h preference,
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_preference_get_route_feature(const maps_preference_h preference, maps_route_feature_e *feature);
+int maps_preference_get_route_feature(const maps_preference_h preference, maps_route_feature_e *feature) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the enable status of alternative routes.
  * @details This function retrieves the enable status of alternative route.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -490,11 +489,11 @@ int maps_preference_get_route_feature(const maps_preference_h preference, maps_r
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_preference_get_route_alternatives_enabled(const maps_preference_h preference, bool *enable);
+int maps_preference_get_route_alternatives_enabled(const maps_preference_h preference, bool *enable) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the maps preference value by key.
  * @details This function gets the maps preference value by key.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -508,11 +507,11 @@ int maps_preference_get_route_alternatives_enabled(const maps_preference_h prefe
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_preference_get(const maps_preference_h preference, const char *key, char **value);
+int maps_preference_get(const maps_preference_h preference, const char *key, char **value) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all maps properties.
  * @details This function retrieves all maps properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -529,14 +528,14 @@ int maps_preference_get(const maps_preference_h preference, const char *key, cha
  * @post This function invokes maps_preference_properties_cb() repeatedly to retrieve each property.
  * @see maps_preference_properties_cb()
  */
-int maps_preference_foreach_property(const maps_preference_h preference, maps_preference_properties_cb callback, void *user_data);
+int maps_preference_foreach_property(const maps_preference_h preference, maps_preference_properties_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the maps distance unit.
  * @details This function sets the maps distance unit.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -551,11 +550,11 @@ int maps_preference_foreach_property(const maps_preference_h preference, maps_pr
  * @see maps_preference_create()
  * @see maps_preference_get_distance_unit()
  */
-int maps_preference_set_distance_unit(maps_preference_h preference, const maps_distance_unit_e unit);
+int maps_preference_set_distance_unit(maps_preference_h preference, const maps_distance_unit_e unit) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the maps language.
  * @details This function sets the maps language.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -575,11 +574,11 @@ int maps_preference_set_distance_unit(maps_preference_h preference, const maps_d
  * @see maps_preference_create()
  * @see maps_preference_get_language()
  */
-int maps_preference_set_language(maps_preference_h preference, const char *language);
+int maps_preference_set_language(maps_preference_h preference, const char *language) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the max amount of results.
  * @details This function sets the max amount of results.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -594,11 +593,11 @@ int maps_preference_set_language(maps_preference_h preference, const char *langu
  * @see maps_preference_create()
  * @see maps_preference_get_max_results()
  */
-int maps_preference_set_max_results(maps_preference_h preference, const int max_results);
+int maps_preference_set_max_results(maps_preference_h preference, const int max_results) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the maps country code.
  * @details This function sets the maps country code.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -613,11 +612,11 @@ int maps_preference_set_max_results(maps_preference_h preference, const int max_
  * @see maps_preference_create()
  * @see maps_preference_get_country_code()
  */
-int maps_preference_set_country_code(maps_preference_h preference, const char *country_code);
+int maps_preference_set_country_code(maps_preference_h preference, const char *country_code) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route optimization.
  * @details This function sets the route optimization.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -632,11 +631,11 @@ int maps_preference_set_country_code(maps_preference_h preference, const char *c
  * @see maps_preference_create()
  * @see maps_preference_get_route_optimization()
  */
-int maps_preference_set_route_optimization(maps_preference_h preference, const maps_route_optimization_e optimization);
+int maps_preference_set_route_optimization(maps_preference_h preference, const maps_route_optimization_e optimization) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route transport mode.
  * @details This function sets the route transport mode.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -651,11 +650,11 @@ int maps_preference_set_route_optimization(maps_preference_h preference, const m
  * @see maps_preference_create()
  * @see maps_preference_get_route_optimization()
  */
-int maps_preference_set_route_transport_mode(maps_preference_h preference, const maps_route_transport_mode_e transport_mode);
+int maps_preference_set_route_transport_mode(maps_preference_h preference, const maps_route_transport_mode_e transport_mode) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route feature weight.
  * @details This function sets the route feature weight.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -670,11 +669,11 @@ int maps_preference_set_route_transport_mode(maps_preference_h preference, const
  * @see maps_preference_create()
  * @see maps_preference_get_route_feature_weight()
  */
-int maps_preference_set_route_feature_weight(maps_preference_h preference, const maps_route_feature_weight_e feature_weight);
+int maps_preference_set_route_feature_weight(maps_preference_h preference, const maps_route_feature_weight_e feature_weight) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route feature.
  * @details This function sets the route feature.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -689,11 +688,11 @@ int maps_preference_set_route_feature_weight(maps_preference_h preference, const
  * @see maps_preference_create()
  * @see maps_preference_get_route_feature()
  */
-int maps_preference_set_route_feature(maps_preference_h preference, const maps_route_feature_e feature);
+int maps_preference_set_route_feature(maps_preference_h preference, const maps_route_feature_e feature) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the enable status of alternative routes.
  * @details This function sets the alternative routes status.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -708,11 +707,11 @@ int maps_preference_set_route_feature(maps_preference_h preference, const maps_r
  * @see maps_preference_create()
  * @see maps_preference_get_route_alternatives_enabled()
  */
-int maps_preference_set_route_alternatives_enabled(maps_preference_h preference, bool enable);
+int maps_preference_set_route_alternatives_enabled(maps_preference_h preference, bool enable) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the preference value by key.
  * @details This function sets the preference value assigned with a specified key.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -728,7 +727,7 @@ int maps_preference_set_route_alternatives_enabled(maps_preference_h preference,
  * @see maps_preference_create()
  * @see maps_preference_foreach_property()
  */
-int maps_preference_set_property(maps_preference_h preference, const char *key, const char *value);
+int maps_preference_set_property(maps_preference_h preference, const char *key, const char *value) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 870552f..06ed863 100644 (file)
@@ -27,7 +27,6 @@
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_ROUTE_MODULE
  * @defgroup CAPI_MAPS_ROUTE_DATA_MODULE Route
  * @file maps_route.h
@@ -44,7 +43,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Route handle.
  * @details The handle of Route instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -60,7 +59,7 @@ typedef void *maps_route_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the path of the Route.
  * @details This callback is invoked while iterating through the list of coordinates, composing the Route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -76,11 +75,11 @@ typedef void *maps_route_h;
  * @see maps_route_foreach_path()
  * @see #maps_coordinates_h
  */
-typedef bool(*maps_route_path_cb) (int index, int total, maps_coordinates_h coordinates, void *user_data);
+typedef bool(*maps_route_path_cb) (int index, int total, maps_coordinates_h coordinates, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the segments of the Route.
  * @details This callback is invoked while iterating through the list of segments, composing the Route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -96,11 +95,11 @@ typedef bool(*maps_route_path_cb) (int index, int total, maps_coordinates_h coor
  * @see maps_route_foreach_segment()
  * @see #maps_route_segment_h
  */
-typedef bool(*maps_route_segment_cb) (int index, int total, maps_route_segment_h segment, void *user_data);
+typedef bool(*maps_route_segment_cb) (int index, int total, maps_route_segment_h segment, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of Route Properties.
  * @details This callback is invoked while iterating through the list of Route Properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -116,14 +115,14 @@ typedef bool(*maps_route_segment_cb) (int index, int total, maps_route_segment_h
  * @pre maps_route_foreach_property() will invoke this callback.
  * @see maps_route_foreach_property()
  */
-typedef bool(*maps_route_properties_cb) (int index, int total, char *key, void *value, void *user_data);
+typedef bool(*maps_route_properties_cb) (int index, int total, char *key, void *value, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the route handle and releases all its resources.
  * @details This function destroys the route handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -135,11 +134,11 @@ typedef bool(*maps_route_properties_cb) (int index, int total, char *key, void *
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_route_clone()
  */
-int maps_route_destroy(maps_route_h route);
+int maps_route_destroy(maps_route_h route) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the route handle.
  * @details This function clones the route handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -154,14 +153,14 @@ int maps_route_destroy(maps_route_h route);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_route_destroy()
  */
-int maps_route_clone(const maps_route_h origin, maps_route_h *cloned);
+int maps_route_clone(const maps_route_h origin, maps_route_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route ID.
  * @details This function gets the route ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -174,11 +173,11 @@ int maps_route_clone(const maps_route_h origin, maps_route_h *cloned);
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_route_get_route_id(const maps_route_h route, char **route_id);
+int maps_route_get_route_id(const maps_route_h route, char **route_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route origin.
  * @details This function gets the route origin.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -193,11 +192,11 @@ int maps_route_get_route_id(const maps_route_h route, char **route_id);
  * @see maps_route_get_destination()
  * @see #maps_coordinates_h
  */
-int maps_route_get_origin(const maps_route_h route, maps_coordinates_h *origin);
+int maps_route_get_origin(const maps_route_h route, maps_coordinates_h *origin) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route destination.
  * @details This function gets the route destination.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -212,11 +211,11 @@ int maps_route_get_origin(const maps_route_h route, maps_coordinates_h *origin);
  * @see maps_route_get_origin()
  * @see #maps_coordinates_h
  */
-int maps_route_get_destination(const maps_route_h route, maps_coordinates_h *destination);
+int maps_route_get_destination(const maps_route_h route, maps_coordinates_h *destination) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route bounding box.
  * @details This function gets the route bounding box.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -230,11 +229,11 @@ int maps_route_get_destination(const maps_route_h route, maps_coordinates_h *des
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_area_h
  */
-int maps_route_get_bounding_box(const maps_route_h route, maps_area_h *bounding_box);
+int maps_route_get_bounding_box(const maps_route_h route, maps_area_h *bounding_box) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route transport mode.
  * @details This function gets the route transport mode.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -247,11 +246,11 @@ int maps_route_get_bounding_box(const maps_route_h route, maps_area_h *bounding_
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_route_transport_mode_e
  */
-int maps_route_get_transport_mode(const maps_route_h route, maps_route_transport_mode_e *transport_mode);
+int maps_route_get_transport_mode(const maps_route_h route, maps_route_transport_mode_e *transport_mode) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route total distance.
  * @details This function gets the route total distance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -264,11 +263,11 @@ int maps_route_get_transport_mode(const maps_route_h route, maps_route_transport
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_route_get_total_duration()
  */
-int maps_route_get_total_distance(const maps_route_h route, double *total_distance);
+int maps_route_get_total_distance(const maps_route_h route, double *total_distance) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route total duration.
  * @details This function gets the route total duration.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -281,11 +280,11 @@ int maps_route_get_total_distance(const maps_route_h route, double *total_distan
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_route_get_total_distance()
  */
-int maps_route_get_total_duration(const maps_route_h route, long *total_duration);
+int maps_route_get_total_duration(const maps_route_h route, long *total_duration) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route distance units.
  * @details This function gets the route distance units.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -298,11 +297,11 @@ int maps_route_get_total_duration(const maps_route_h route, long *total_duration
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_distance_unit_e
  */
-int maps_route_get_distance_unit(const maps_route_h route, maps_distance_unit_e *distance_unit);
+int maps_route_get_distance_unit(const maps_route_h route, maps_distance_unit_e *distance_unit) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all properties.
  * @details This function retrieves all route properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -319,11 +318,11 @@ int maps_route_get_distance_unit(const maps_route_h route, maps_distance_unit_e
  * @post This function invokes maps_route_properties_cb() repeatedly to retrieve each property.
  * @see maps_route_properties_cb()
  */
-int maps_route_foreach_property(const maps_route_h route, maps_route_properties_cb callback, void *user_data);
+int maps_route_foreach_property(const maps_route_h route, maps_route_properties_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all coordinates of the path.
  * @details This function retrieves all coordinates of the route path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -340,11 +339,11 @@ int maps_route_foreach_property(const maps_route_h route, maps_route_properties_
  * @post This function invokes maps_route_path_cb() repeatedly to retrieve each coordinate point.
  * @see maps_route_path_cb()
  */
-int maps_route_foreach_path(const maps_route_h route, maps_route_path_cb callback, void *user_data);
+int maps_route_foreach_path(const maps_route_h route, maps_route_path_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all segments of the route.
  * @details This function retrieves all segments of the route.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -361,7 +360,7 @@ int maps_route_foreach_path(const maps_route_h route, maps_route_path_cb callbac
  * @post This function invokes maps_route_segment_cb() repeatedly to retrieve each segment.
  * @see maps_route_segment_cb()
  */
-int maps_route_foreach_segment(const maps_route_h route, maps_route_segment_cb callback, void *user_data);
+int maps_route_foreach_segment(const maps_route_h route, maps_route_segment_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 53bfe7c..fc47d45 100644 (file)
@@ -23,7 +23,6 @@
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_ROUTE_MODULE
  * @defgroup CAPI_MAPS_ROUTE_MANEUVER_MODULE Maneuver
  * @file maps_route_maneuver.h
@@ -40,7 +39,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Route Maneuver handle.
  * @details The handle of Route Maneuver instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -53,7 +52,7 @@ typedef void *maps_route_maneuver_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for direction type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -71,7 +70,7 @@ typedef enum {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for the turn type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -98,7 +97,7 @@ typedef enum {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the route Maneuver handle and releases all its resources.
  * @details This function destroys the route Maneuver handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -110,11 +109,11 @@ typedef enum {
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_route_maneuver_clone()
  */
-int maps_route_maneuver_destroy(maps_route_maneuver_h maneuver);
+int maps_route_maneuver_destroy(maps_route_maneuver_h maneuver) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the route Maneuver handle.
  * @details This function clones the route Maneuver handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -129,14 +128,14 @@ int maps_route_maneuver_destroy(maps_route_maneuver_h maneuver);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_route_maneuver_destroy()
  */
-int maps_route_maneuver_clone(const maps_route_maneuver_h origin, maps_route_maneuver_h *cloned);
+int maps_route_maneuver_clone(const maps_route_maneuver_h origin, maps_route_maneuver_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route Maneuver direction ID.
  * @details This function gets the route Maneuver direction ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -149,11 +148,11 @@ int maps_route_maneuver_clone(const maps_route_maneuver_h origin, maps_route_man
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_route_direction_e
  */
-int maps_route_maneuver_get_direction_id(const maps_route_maneuver_h maneuver, maps_route_direction_e *direction_id);
+int maps_route_maneuver_get_direction_id(const maps_route_maneuver_h maneuver, maps_route_direction_e *direction_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route Maneuver turn type.
  * @details This function gets the route Maneuver turn type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -166,11 +165,11 @@ int maps_route_maneuver_get_direction_id(const maps_route_maneuver_h maneuver, m
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_route_turn_type_e
  */
-int maps_route_maneuver_get_turn_type(const maps_route_maneuver_h maneuver, maps_route_turn_type_e *turn_type);
+int maps_route_maneuver_get_turn_type(const maps_route_maneuver_h maneuver, maps_route_turn_type_e *turn_type) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route Maneuver position.
  * @details This function gets the route Maneuver position.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -184,11 +183,11 @@ int maps_route_maneuver_get_turn_type(const maps_route_maneuver_h maneuver, maps
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_coordinates_h
  */
-int maps_route_maneuver_get_position(const maps_route_maneuver_h maneuver, maps_coordinates_h *position);
+int maps_route_maneuver_get_position(const maps_route_maneuver_h maneuver, maps_coordinates_h *position) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the road name of the route Maneuver.
  * @details This function gets the road name of the route Maneuver.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -201,11 +200,11 @@ int maps_route_maneuver_get_position(const maps_route_maneuver_h maneuver, maps_
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_route_maneuver_get_road_name(const maps_route_maneuver_h maneuver, char **road_name);
+int maps_route_maneuver_get_road_name(const maps_route_maneuver_h maneuver, char **road_name) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the instruction text (narrative) of the route Maneuver.
  * @details This function gets the instruction text (narrative) of the route Maneuver.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -218,11 +217,11 @@ int maps_route_maneuver_get_road_name(const maps_route_maneuver_h maneuver, char
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_route_maneuver_get_instruction_text(const maps_route_maneuver_h maneuver, char **instruction_text);
+int maps_route_maneuver_get_instruction_text(const maps_route_maneuver_h maneuver, char **instruction_text) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route Maneuver locale.
  * @details This function gets the route Maneuver locale.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -235,11 +234,11 @@ int maps_route_maneuver_get_instruction_text(const maps_route_maneuver_h maneuve
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_route_maneuver_get_locale(const maps_route_maneuver_h maneuver, char **locale);
+int maps_route_maneuver_get_locale(const maps_route_maneuver_h maneuver, char **locale) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the time to next instruction of the route Maneuver.
  * @details This function gets the time to next instruction of the route Maneuver.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -251,11 +250,11 @@ int maps_route_maneuver_get_locale(const maps_route_maneuver_h maneuver, char **
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_route_maneuver_get_time_to_next_instruction(const maps_route_maneuver_h maneuver, int *time_to_next_instruction);
+int maps_route_maneuver_get_time_to_next_instruction(const maps_route_maneuver_h maneuver, int *time_to_next_instruction) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the distance to next instruction of the route Maneuver.
  * @details This function gets the distance to next instruction of the route Maneuver.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -267,7 +266,7 @@ int maps_route_maneuver_get_time_to_next_instruction(const maps_route_maneuver_h
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_route_maneuver_get_distance_to_next_instruction(const maps_route_maneuver_h maneuver, double *distance_to_next_instruction);
+int maps_route_maneuver_get_distance_to_next_instruction(const maps_route_maneuver_h maneuver, double *distance_to_next_instruction) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index dac33af..20238ae 100644 (file)
@@ -20,7 +20,6 @@
 #include <maps_route_maneuver.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_ROUTE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_ROUTE_MANEUVER_MODULE Maneuver
  *
@@ -38,7 +37,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new route maneuver handle.
  * @details This function creates a new route maneuver handle and allocates all
  * needed resources.
@@ -56,10 +55,10 @@ extern "C" {
  * @see maps_route_maneuver_destroy()
  * @see maps_route_maneuver_clone()
  */
-int maps_route_maneuver_create(maps_route_maneuver_h *maneuver);
+int maps_route_maneuver_create(maps_route_maneuver_h *maneuver) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route maneuver direction ID.
  * @details This function sets the route maneuver direction ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -77,10 +76,10 @@ int maps_route_maneuver_create(maps_route_maneuver_h *maneuver);
  * @see maps_route_maneuver_get_direction_id()
  * @see #maps_route_direction_e
  */
-int maps_route_maneuver_set_direction_id(maps_route_maneuver_h maneuver, const maps_route_direction_e direction_id);
+int maps_route_maneuver_set_direction_id(maps_route_maneuver_h maneuver, const maps_route_direction_e direction_id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route maneuver turn type.
  * @details This function sets the route maneuver turn type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -98,10 +97,10 @@ int maps_route_maneuver_set_direction_id(maps_route_maneuver_h maneuver, const m
  * @see maps_route_maneuver_get_turn_type()
  * @see #maps_route_turn_type_e
  */
-int maps_route_maneuver_set_turn_type(maps_route_maneuver_h maneuver, const maps_route_turn_type_e turn_type);
+int maps_route_maneuver_set_turn_type(maps_route_maneuver_h maneuver, const maps_route_turn_type_e turn_type) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route maneuver road name.
  * @details This function sets the route maneuver road name.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -118,10 +117,10 @@ int maps_route_maneuver_set_turn_type(maps_route_maneuver_h maneuver, const maps
  * @see maps_route_maneuver_create()
  * @see maps_route_maneuver_get_road_name()
  */
-int maps_route_maneuver_set_road_name(maps_route_maneuver_h maneuver, const char *road_name);
+int maps_route_maneuver_set_road_name(maps_route_maneuver_h maneuver, const char *road_name) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route maneuver instruction text.
  * @details This function sets the route maneuver instruction text.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -138,10 +137,10 @@ int maps_route_maneuver_set_road_name(maps_route_maneuver_h maneuver, const char
  * @see maps_route_maneuver_create()
  * @see maps_route_maneuver_get_instruction_text()
  */
-int maps_route_maneuver_set_instruction_text(maps_route_maneuver_h maneuver, const char *instruction_text);
+int maps_route_maneuver_set_instruction_text(maps_route_maneuver_h maneuver, const char *instruction_text) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route maneuver locale.
  * @details This function sets the route maneuver locale.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -158,10 +157,10 @@ int maps_route_maneuver_set_instruction_text(maps_route_maneuver_h maneuver, con
  * @see maps_route_maneuver_create()
  * @see maps_route_maneuver_get_locale()
  */
-int maps_route_maneuver_set_locale(maps_route_maneuver_h maneuver, const char *locale);
+int maps_route_maneuver_set_locale(maps_route_maneuver_h maneuver, const char *locale) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route maneuver position.
  * @details This function sets the route maneuver position.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -178,10 +177,10 @@ int maps_route_maneuver_set_locale(maps_route_maneuver_h maneuver, const char *l
  * @see maps_route_maneuver_create()
  * @see maps_route_maneuver_get_position()
  */
-int maps_route_maneuver_set_position(maps_route_maneuver_h maneuver, const maps_coordinates_h position);
+int maps_route_maneuver_set_position(maps_route_maneuver_h maneuver, const maps_coordinates_h position) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the time to next instruction in route maneuver.
  * @details This function sets the time to next instruction in route maneuver.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -198,10 +197,10 @@ int maps_route_maneuver_set_position(maps_route_maneuver_h maneuver, const maps_
  * @see maps_route_maneuver_create()
  * @see maps_route_maneuver_get_time_to_next_instruction()
  */
-int maps_route_maneuver_set_time_to_next_instruction(maps_route_maneuver_h maneuver, const int time_to_next_instruction);
+int maps_route_maneuver_set_time_to_next_instruction(maps_route_maneuver_h maneuver, const int time_to_next_instruction) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the distance to next instruction in route maneuver.
  * @details This function sets the distance to next instruction in route
  * maneuver.
@@ -220,7 +219,7 @@ int maps_route_maneuver_set_time_to_next_instruction(maps_route_maneuver_h maneu
  * @see maps_route_maneuver_create()
  * @see maps_route_maneuver_get_distance_to_next_instruction()
  */
-int maps_route_maneuver_set_distance_to_next_instruction(maps_route_maneuver_h maneuver, const double distance_to_next_instruction);
+int maps_route_maneuver_set_distance_to_next_instruction(maps_route_maneuver_h maneuver, const double distance_to_next_instruction) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 3b318a6..fe0acc5 100644 (file)
@@ -26,7 +26,6 @@
  */
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_ROUTE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_ROUTE_DATA_MODULE Route
  *
@@ -45,7 +44,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new route handle.
  * @details This function creates a new route handle and allocates all needed
  * resources.
@@ -63,10 +62,10 @@ extern "C" {
  * @see maps_route_destroy()
  * @see maps_route_clone()
  */
-int maps_route_create(maps_route_h *route);
+int maps_route_create(maps_route_h *route) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route ID.
  * @details This function sets the route ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -83,10 +82,10 @@ int maps_route_create(maps_route_h *route);
  * @see maps_route_create()
  * @see maps_route_get_route_id()
  */
-int maps_route_set_route_id(maps_route_h route, const char *id);
+int maps_route_set_route_id(maps_route_h route, const char *id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route origin.
  * @details This function sets the route origin.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -104,10 +103,10 @@ int maps_route_set_route_id(maps_route_h route, const char *id);
  * @see maps_route_get_origin()
  * @see maps_route_set_destination()
  */
-int maps_route_set_origin(maps_route_h route, const maps_coordinates_h origin);
+int maps_route_set_origin(maps_route_h route, const maps_coordinates_h origin) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route destination.
  * @details This function sets the route destination.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -125,10 +124,10 @@ int maps_route_set_origin(maps_route_h route, const maps_coordinates_h origin);
  * @see maps_route_get_destination()
  * @see maps_route_set_origin()
  */
-int maps_route_set_destination(maps_route_h route, const maps_coordinates_h destination);
+int maps_route_set_destination(maps_route_h route, const maps_coordinates_h destination) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route bounding box.
  * @details This function sets the route bounding box.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -145,10 +144,10 @@ int maps_route_set_destination(maps_route_h route, const maps_coordinates_h dest
  * @see maps_route_create()
  * @see maps_route_get_bounding_box()
  */
-int maps_route_set_bounding_box(maps_route_h route, const maps_area_h bounding_box);
+int maps_route_set_bounding_box(maps_route_h route, const maps_area_h bounding_box) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route total distance.
  * @details This function sets the route total distance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -165,10 +164,10 @@ int maps_route_set_bounding_box(maps_route_h route, const maps_area_h bounding_b
  * @see maps_route_create()
  * @see maps_route_get_total_distance()
  */
-int maps_route_set_total_distance(maps_route_h route, const double total_distance);
+int maps_route_set_total_distance(maps_route_h route, const double total_distance) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route total duration.
  * @details This function sets the route total duration.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -185,10 +184,10 @@ int maps_route_set_total_distance(maps_route_h route, const double total_distanc
  * @see maps_route_create()
  * @see maps_route_get_total_duration()
  */
-int maps_route_set_total_duration(maps_route_h route, const long total_duration);
+int maps_route_set_total_duration(maps_route_h route, const long total_duration) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route transport mode.
  * @details This function sets the route transport mode.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -206,10 +205,10 @@ int maps_route_set_total_duration(maps_route_h route, const long total_duration)
  * @see maps_route_get_transport_mode()
  * @see #maps_route_transport_mode_e
  */
-int maps_route_set_transport_mode(maps_route_h route, const maps_route_transport_mode_e transport_mode);
+int maps_route_set_transport_mode(maps_route_h route, const maps_route_transport_mode_e transport_mode) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route distance units.
  * @details This function sets the route distance units.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -227,10 +226,10 @@ int maps_route_set_transport_mode(maps_route_h route, const maps_route_transport
  * @see maps_route_get_distance_unit()
  * @see #maps_distance_unit_e
  */
-int maps_route_set_distance_unit(maps_route_maneuver_h maneuver, const maps_distance_unit_e distance_unit);
+int maps_route_set_distance_unit(maps_route_maneuver_h maneuver, const maps_distance_unit_e distance_unit) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route path.
  * @details This function sets the route path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -247,10 +246,10 @@ int maps_route_set_distance_unit(maps_route_maneuver_h maneuver, const maps_dist
  * @see maps_route_create()
  * @see maps_route_foreach_path()
  */
-int maps_route_set_path(maps_route_h route, const maps_item_list_h path);
+int maps_route_set_path(maps_route_h route, const maps_item_list_h path) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route segment list.
  * @details This function sets the route segment list.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -268,10 +267,10 @@ int maps_route_set_path(maps_route_h route, const maps_item_list_h path);
  * @see maps_route_foreach_segment()
  */
 
-int maps_route_set_segments(maps_route_h route, const maps_item_list_h segments);
+int maps_route_set_segments(maps_route_h route, const maps_item_list_h segments) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route properties.
  * @details This function sets the route properties.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -288,7 +287,7 @@ int maps_route_set_segments(maps_route_h route, const maps_item_list_h segments)
  * @see maps_route_create()
  * @see maps_route_foreach_property()
  */
-int maps_route_set_properties(maps_route_h route, const maps_item_hashtable_h properties);
+int maps_route_set_properties(maps_route_h route, const maps_item_hashtable_h properties) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 0c3e8d1..90be6c5 100644 (file)
@@ -26,7 +26,6 @@
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_ROUTE_MODULE
  * @defgroup CAPI_MAPS_ROUTE_SEGMENT_MODULE Segment
  * @file maps_route_segment.h
@@ -44,7 +43,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Route Segment handle.
  * @details The handle of Route Segment instance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -57,7 +56,7 @@ typedef void *maps_route_segment_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the path of the Route Segment.
  * @details This callback is invoked while iterating through the list of coordinates, composing the Route Segment.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -73,11 +72,11 @@ typedef void *maps_route_segment_h;
  * @see maps_route_segment_foreach_path()
  * @see #maps_coordinates_h
  */
-typedef bool(*maps_route_segment_path_cb) (int index, int total, maps_coordinates_h coordinates, void *user_data);
+typedef bool(*maps_route_segment_path_cb) (int index, int total, maps_coordinates_h coordinates, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the Maneuvers of the Route Segment.
  * @details This callback is invoked while iterating through the list of Maneuvers, composing the Route Segment.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -93,14 +92,14 @@ typedef bool(*maps_route_segment_path_cb) (int index, int total, maps_coordinate
  * @see maps_route_segment_foreach_maneuver()
  * @see #maps_route_maneuver_h
  */
-typedef bool(*maps_route_segment_maneuver_cb) (int index, int total, maps_route_maneuver_h maneuver, void *user_data);
+typedef bool(*maps_route_segment_maneuver_cb) (int index, int total, maps_route_maneuver_h maneuver, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the route segment handle and releases all its resources.
  * @details This function destroys the route segment handle and releases all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -112,11 +111,11 @@ typedef bool(*maps_route_segment_maneuver_cb) (int index, int total, maps_route_
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_route_segment_clone()
  */
-int maps_route_segment_destroy(maps_route_segment_h segment);
+int maps_route_segment_destroy(maps_route_segment_h segment) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the route segment handle.
  * @details This function clones the route handle @a origin and all its resources.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -131,14 +130,14 @@ int maps_route_segment_destroy(maps_route_segment_h segment);
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see maps_route_segment_destroy()
  */
-int maps_route_segment_clone(const maps_route_segment_h origin, maps_route_segment_h *cloned);
+int maps_route_segment_clone(const maps_route_segment_h origin, maps_route_segment_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route segment origin.
  * @details This function gets the route segment origin.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -152,11 +151,11 @@ int maps_route_segment_clone(const maps_route_segment_h origin, maps_route_segme
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_coordinates_h
  */
-int maps_route_segment_get_origin(const maps_route_segment_h segment, maps_coordinates_h *origin);
+int maps_route_segment_get_origin(const maps_route_segment_h segment, maps_coordinates_h *origin) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route segment destination.
  * @details This function gets the route segment destination.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -170,11 +169,11 @@ int maps_route_segment_get_origin(const maps_route_segment_h segment, maps_coord
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_coordinates_h
  */
-int maps_route_segment_get_destination(const maps_route_segment_h segment, maps_coordinates_h *destination);
+int maps_route_segment_get_destination(const maps_route_segment_h segment, maps_coordinates_h *destination) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route segment bounding box.
  * @details This function gets the route segment bounding box.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -188,11 +187,11 @@ int maps_route_segment_get_destination(const maps_route_segment_h segment, maps_
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  * @see #maps_area_h
  */
-int maps_route_segment_get_bounding_box(const maps_route_segment_h segment, maps_area_h *bounding_box);
+int maps_route_segment_get_bounding_box(const maps_route_segment_h segment, maps_area_h *bounding_box) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route segment distance.
  * @details This function gets the route segment distance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -204,11 +203,11 @@ int maps_route_segment_get_bounding_box(const maps_route_segment_h segment, maps
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_route_segment_get_distance(const maps_route_segment_h segment, double *distance);
+int maps_route_segment_get_distance(const maps_route_segment_h segment, double *distance) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the route segment duration.
  * @details This function gets the route segment duration.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -220,11 +219,11 @@ int maps_route_segment_get_distance(const maps_route_segment_h segment, double *
  * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported
  */
-int maps_route_segment_get_duration(const maps_route_segment_h segment, long *duration);
+int maps_route_segment_get_duration(const maps_route_segment_h segment, long *duration) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all coordinates of the path.
  * @details This function retrieves all coordinates of the route segment path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -241,11 +240,11 @@ int maps_route_segment_get_duration(const maps_route_segment_h segment, long *du
  * @post This function invokes maps_route_segment_path_cb() repeatedly to retrieve each coordinate point.
  * @see maps_route_segment_path_cb()
  */
-int maps_route_segment_foreach_path(const maps_route_segment_h segment, maps_route_segment_path_cb callback, void *user_data);
+int maps_route_segment_foreach_path(const maps_route_segment_h segment, maps_route_segment_path_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all Maneuvers of the path.
  * @details This function retrieves all Maneuvers of the route segment path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -262,7 +261,7 @@ int maps_route_segment_foreach_path(const maps_route_segment_h segment, maps_rou
  * @post This function invokes maps_route_segment_maneuver_cb() repeatedly to retrieve each coordinate point.
  * @see maps_route_segment_maneuver_cb()
  */
-int maps_route_segment_foreach_maneuver(const maps_route_segment_h segment, maps_route_segment_maneuver_cb callback, void *user_data);
+int maps_route_segment_foreach_maneuver(const maps_route_segment_h segment, maps_route_segment_maneuver_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index a173d6c..b4757f3 100644 (file)
@@ -20,7 +20,6 @@
 #include <maps_route_segment.h>
 #include <maps_extra_types.h>
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_PLUGIN_ROUTE_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_ROUTE_SEGMENT_MODULE Segment
  *
@@ -38,7 +37,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new route segment handle.
  * @details This function creates a new route segment handle and allocates all
  * needed resources.
@@ -56,10 +55,10 @@ extern "C" {
  * @see maps_route_segment_destroy()
  * @see maps_route_segment_clone()
  */
-int maps_route_segment_create(maps_route_segment_h *segment);
+int maps_route_segment_create(maps_route_segment_h *segment) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route segment origin.
  * @details This function sets the route segment origin.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -76,10 +75,10 @@ int maps_route_segment_create(maps_route_segment_h *segment);
  * @see maps_route_segment_create()
  * @see maps_route_segment_get_origin()
  */
-int maps_route_segment_set_origin(maps_route_segment_h segment, const maps_coordinates_h origin);
+int maps_route_segment_set_origin(maps_route_segment_h segment, const maps_coordinates_h origin) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route segment destination.
  * @details This function sets the route segment destination.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -96,10 +95,10 @@ int maps_route_segment_set_origin(maps_route_segment_h segment, const maps_coord
  * @see maps_route_segment_create()
  * @see maps_route_segment_get_destination()
  */
-int maps_route_segment_set_destination(maps_route_segment_h segment, const maps_coordinates_h destination);
+int maps_route_segment_set_destination(maps_route_segment_h segment, const maps_coordinates_h destination) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route segment bounding box.
  * @details This function sets the route segment bounding box.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -116,10 +115,10 @@ int maps_route_segment_set_destination(maps_route_segment_h segment, const maps_
  * @see maps_route_segment_create()
  * @see maps_route_segment_get_bounding_box()
  */
-int maps_route_segment_set_bounding_box(maps_route_segment_h segment, const maps_area_h bounding_box);
+int maps_route_segment_set_bounding_box(maps_route_segment_h segment, const maps_area_h bounding_box) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route segment distance.
  * @details This function sets the route segment distance.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -136,10 +135,10 @@ int maps_route_segment_set_bounding_box(maps_route_segment_h segment, const maps
  * @see maps_route_segment_create()
  * @see maps_route_segment_get_distance()
  */
-int maps_route_segment_set_distance(maps_route_segment_h segment, const double distance);
+int maps_route_segment_set_distance(maps_route_segment_h segment, const double distance) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route segment duration.
  * @details This function sets the route segment duration.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -156,10 +155,10 @@ int maps_route_segment_set_distance(maps_route_segment_h segment, const double d
  * @see maps_route_segment_create()
  * @see maps_route_segment_get_duration()
  */
-int maps_route_segment_set_duration(maps_route_segment_h segment, const long duration);
+int maps_route_segment_set_duration(maps_route_segment_h segment, const long duration) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route segment path.
  * @details This function sets the route segment path.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -176,10 +175,10 @@ int maps_route_segment_set_duration(maps_route_segment_h segment, const long dur
  * @see maps_route_segment_create()
  * @see maps_route_segment_foreach_path()
  */
-int maps_route_segment_set_path(maps_route_segment_h segment, const maps_item_list_h path);
+int maps_route_segment_set_path(maps_route_segment_h segment, const maps_item_list_h path) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the route segment maneuver list.
  * @details This function sets the route segment maneuver list.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -196,7 +195,7 @@ int maps_route_segment_set_path(maps_route_segment_h segment, const maps_item_li
  * @see maps_route_segment_create()
  * @see maps_route_segment_foreach_maneuver()
  */
-int maps_route_segment_set_maneuvers(maps_route_segment_h segment, const maps_item_list_h maneuvers);
+int maps_route_segment_set_maneuvers(maps_route_segment_h segment, const maps_item_list_h maneuvers) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index f9a6e74..8e6fcec 100644 (file)
@@ -32,7 +32,6 @@
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @file maps_service.h
  * @brief This file contains the top level functions of Maps API
  *
@@ -51,7 +50,6 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_SERVICE_AND_PREFERENCE_MODULE Service and Providers
  * @addtogroup CAPI_MAPS_SERVICE_AND_PREFERENCE_MODULE
@@ -61,7 +59,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for maps requests available in the Maps Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -86,7 +84,7 @@ typedef enum _maps_service_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for maps features available in the Maps Service.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
  */
@@ -113,7 +111,7 @@ typedef enum _maps_service_data_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting available Maps Providers.
  * @details A Maps Service invokes this callback iteratively as long as available Maps Providers exist.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -126,11 +124,11 @@ typedef enum _maps_service_data_e {
  * @see maps_service_foreach_provider()
  * @see maps_service_create()
  */
-typedef bool(*maps_service_provider_info_cb) (char *maps_provider, void *user_data);
+typedef bool(*maps_service_provider_info_cb) (char *maps_provider, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets available Maps Providers.
  * @details This function delivers available Maps Providers via maps_service_provider_info_cb() callback.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -146,11 +144,11 @@ typedef bool(*maps_service_provider_info_cb) (char *maps_provider, void *user_da
  * @see maps_service_provider_info_cb()
  * @see maps_service_create()
  */
-int maps_service_foreach_provider(maps_service_provider_info_cb callback, void *user_data);
+int maps_service_foreach_provider(maps_service_provider_info_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called with the information about user's consent.
  * @details The Maps Service invokes this callback when the information about user's consent is obtained.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -161,11 +159,11 @@ int maps_service_foreach_provider(maps_service_provider_info_cb callback, void *
  * @see maps_service_request_user_consent()
  * @see maps_service_create()
  */
-typedef void(*maps_service_request_user_consent_cb) (bool consented, const char *maps_provider, void *user_data);
+typedef void(*maps_service_request_user_consent_cb) (bool consented, const char *maps_provider, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the user's consent to use maps data.
  * @details The function gets information whether the user agreed that the application can use maps data.
  *          If maps_service_request_user_consent() is called when the user didn't agree yet, a popup is shown and
@@ -191,11 +189,11 @@ typedef void(*maps_service_request_user_consent_cb) (bool consented, const char
  * @see maps_service_request_user_consent_cb()
  * @see maps_service_create()
  */
-int maps_service_request_user_consent(const char *maps_provider, maps_service_request_user_consent_cb callback, void *user_data);
+int maps_service_request_user_consent(const char *maps_provider, maps_service_request_user_consent_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new Maps Service and assigns it with a handle.
  * @details While Maps Service is being created, a Maps Provider is initialized and linked with Maps Service handle.
  *          A Maps Service handle is used to query Maps Provider performing services, such as Geocoding, Searching Places, and Routing.
@@ -236,11 +234,11 @@ int maps_service_request_user_consent(const char *maps_provider, maps_service_re
  * @see maps_service_provider_is_service_supported()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_service_create(const char *maps_provider, maps_service_h *maps);
+int maps_service_create(const char *maps_provider, maps_service_h *maps) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the Maps Service handle and releases all its resources.
  * @details This function releases all used resources of the Maps Service and Maps Provider.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -256,11 +254,11 @@ int maps_service_create(const char *maps_provider, maps_service_h *maps);
  * @pre Call maps_service_create() to create Maps Service and get its handle.
  * @see maps_service_create()
  */
-int maps_service_destroy(maps_service_h maps);
+int maps_service_destroy(maps_service_h maps) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the Maps Key to be used in the requests of Maps Service.
  * @details This function sets the Maps Provider's Key which will be used in each Maps Service request to Maps Provider.\n
  *          Maps Key can be obtained with maps_service_get_provider_key().
@@ -282,11 +280,11 @@ int maps_service_destroy(maps_service_h maps);
  * @see maps_service_create()
  * @see maps_service_get_provider_key()
  */
-int maps_service_set_provider_key(maps_service_h maps, const char *provider_key);
+int maps_service_set_provider_key(maps_service_h maps, const char *provider_key) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the Maps Key which is to be used in the Maps Service requests
  * @details This function gets the Maps Key which is to be used in each Maps Service request to Maps Provider.\n
  *          Maps Key can be set with maps_service_set_provider_key().
@@ -304,11 +302,11 @@ int maps_service_set_provider_key(maps_service_h maps, const char *provider_key)
  * @see maps_service_set_provider_key()
  * @see maps_service_create()
  */
-int maps_service_get_provider_key(const maps_service_h maps, char **provider_key);
+int maps_service_get_provider_key(const maps_service_h maps, char **provider_key) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the Maps Preference.
  * @details This function sets the Maps Preferences which are used in each Maps Service request to Maps Provider.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -324,11 +322,11 @@ int maps_service_get_provider_key(const maps_service_h maps, char **provider_key
  * @see maps_service_get_preference()
  * @see maps_service_create()
  */
-int maps_service_set_preference(maps_service_h maps, maps_preference_h preference);
+int maps_service_set_preference(maps_service_h maps, maps_preference_h preference) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the Maps Preference.
  * @details This function gets the Maps Preferences which are used in each Maps Service request to Maps Provider.\n
  *          Preferences can be set with maps_service_set_preference().
@@ -346,11 +344,11 @@ int maps_service_set_preference(maps_service_h maps, maps_preference_h preferenc
  * @see maps_service_set_preference()
  * @see maps_service_create()
  */
-int maps_service_get_preference(maps_service_h maps, maps_preference_h *preference);
+int maps_service_get_preference(maps_service_h maps, maps_preference_h *preference) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Checks if the Maps Service supports a request.
  * @details This function checks if the Maps Service supports a specified request.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -366,11 +364,11 @@ int maps_service_get_preference(maps_service_h maps, maps_preference_h *preferen
  * @pre Call maps_service_create() to create Maps Service and get its handle.
  * @see maps_service_create()
  */
-int maps_service_provider_is_service_supported(const maps_service_h maps, maps_service_e service, bool *supported);
+int maps_service_provider_is_service_supported(const maps_service_h maps, maps_service_e service, bool *supported) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Checks if the Maps Service supports a data feature.
  * @details This function checks if the Maps Service supports a specified data feature.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -386,7 +384,7 @@ int maps_service_provider_is_service_supported(const maps_service_h maps, maps_s
  * @pre Call maps_service_create() to create Maps Service and get its handle.
  * @see maps_service_create()
  */
-int maps_service_provider_is_data_supported(const maps_service_h maps, maps_service_data_e data, bool *supported);
+int maps_service_provider_is_data_supported(const maps_service_h maps, maps_service_data_e data, bool *supported) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
@@ -396,7 +394,7 @@ int maps_service_provider_is_data_supported(const maps_service_h maps, maps_serv
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Cancels the service request.
  * @details This function cancels the service request initiated by geocoding and searching places and routes.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -438,7 +436,7 @@ int maps_service_provider_is_data_supported(const maps_service_h maps, maps_serv
  * @see maps_service_search_route()
  * @see maps_service_search_route_waypoints()
  */
-int maps_service_cancel_request(const maps_service_h maps, int request_id);
+int maps_service_cancel_request(const maps_service_h maps, int request_id) TIZEN_DEPRECATED_API;
 
 
 /**
@@ -453,7 +451,6 @@ int maps_service_cancel_request(const maps_service_h maps, int request_id);
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_GEOCODER_MODULE Geocoder
  * @if WEARABLE
@@ -482,7 +479,7 @@ int maps_service_cancel_request(const maps_service_h maps, int request_id);
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called once for each position coordinates converted from the given address information.
  * @details The Maps Service invokes this callback while iterating through the list of obtained coordinates of the specified place.\n
  *          If search is failed, the value of @a total is 0 and @a coordinates is NULL.
@@ -506,11 +503,11 @@ int maps_service_cancel_request(const maps_service_h maps, int request_id);
  * @see maps_service_geocode_inside_area()
  * @see maps_service_cancel_request()
  */
-typedef bool(*maps_service_geocode_cb) (maps_error_e result, int request_id, int index, int total, maps_coordinates_h coordinates, void *user_data);
+typedef bool(*maps_service_geocode_cb) (maps_error_e result, int request_id, int index, int total, maps_coordinates_h coordinates, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when the address information is converted from position information.
  * @details The Maps Service invokes this callback when the address is obtained from the specified coordinates.\n
  *          If search is failed, the value of @a total is 0 and @a address is NULL.
@@ -531,11 +528,11 @@ typedef bool(*maps_service_geocode_cb) (maps_error_e result, int request_id, int
  * @see maps_service_reverse_geocode()
  * @see maps_service_cancel_request()
  */
-typedef void (*maps_service_reverse_geocode_cb) (maps_error_e result, int request_id, int index, int total, maps_address_h address, void *user_data);
+typedef void (*maps_service_reverse_geocode_cb) (maps_error_e result, int request_id, int index, int total, maps_address_h address, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the position coordinates for a given address.\n
  *        The request is asynchronous.
  * @details This function obtains position coordinates for a given free-formed address string.
@@ -575,11 +572,11 @@ typedef void (*maps_service_reverse_geocode_cb) (maps_error_e result, int reques
  * @see maps_service_reverse_geocode()
  * @see maps_service_provider_is_service_supported()
  */
-int maps_service_geocode(const maps_service_h maps, const char *address, const maps_preference_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id);
+int maps_service_geocode(const maps_service_h maps, const char *address, const maps_preference_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the position for a given address within the specified bounding box.\n
  *        The request is asynchronous.
  * @details This function obtains position coordinates for a given free-formed address string within the specified bounding box.
@@ -623,11 +620,11 @@ int maps_service_geocode(const maps_service_h maps, const char *address, const m
  * @see maps_service_reverse_geocode()
  * @see maps_service_provider_is_service_supported()
  */
-int maps_service_geocode_inside_area(const maps_service_h maps, const char *address, const maps_area_h bounds, const maps_preference_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id);
+int maps_service_geocode_inside_area(const maps_service_h maps, const char *address, const maps_area_h bounds, const maps_preference_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the position coordinates for a given address.\n
  *        The request is asynchronous.
  * @details This function obtains position coordinates for a given structured address.
@@ -668,11 +665,11 @@ int maps_service_geocode_inside_area(const maps_service_h maps, const char *addr
  * @see maps_service_reverse_geocode()
  * @see maps_service_provider_is_service_supported()
  */
-int maps_service_geocode_by_structured_address(const maps_service_h maps, const maps_address_h address, const maps_preference_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id);
+int maps_service_geocode_by_structured_address(const maps_service_h maps, const maps_address_h address, const maps_preference_h preference, maps_service_geocode_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the address for a given position coordinates.\n
  *        The request is asynchronous.
  * @details This function obtains structured address information for a given position coordinates.
@@ -712,11 +709,11 @@ int maps_service_geocode_by_structured_address(const maps_service_h maps, const
  * @see maps_service_geocode()
  * @see maps_service_provider_is_service_supported()
  */
-int maps_service_reverse_geocode(const maps_service_h maps, double latitude, double longitude, const maps_preference_h preference, maps_service_reverse_geocode_cb callback, void *user_data, int *request_id);
+int maps_service_reverse_geocode(const maps_service_h maps, double latitude, double longitude, const maps_preference_h preference, maps_service_reverse_geocode_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when respond to a request of multi reverse geocoding.
  * @details The Maps Service invokes this callback once when gets the response from map service provider.\n
  *          The value of @a total is same with requested coordinates list size.
@@ -740,11 +737,11 @@ int maps_service_reverse_geocode(const maps_service_h maps, double latitude, dou
  * @see maps_address_list_foreach()
  * @see maps_service_cancel_request()
  */
-typedef bool (*maps_service_multi_reverse_geocode_cb) (maps_error_e result, int request_id, int total, maps_address_list_h address_list, void *user_data);
+typedef bool (*maps_service_multi_reverse_geocode_cb) (maps_error_e result, int request_id, int total, maps_address_list_h address_list, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the address list for a given position coordinates list.\n
  *        The request is asynchronous.
  * @details This function obtains structured address information.
@@ -783,7 +780,7 @@ typedef bool (*maps_service_multi_reverse_geocode_cb) (maps_error_e result, int
  * @see maps_service_reverse_geocode()
  * @see maps_service_provider_is_service_supported()
  */
-int maps_service_multi_reverse_geocode(const maps_service_h maps, maps_coordinates_list_h coordinates_list, const maps_preference_h preference, maps_service_multi_reverse_geocode_cb callback, void *user_data, int *request_id);
+int maps_service_multi_reverse_geocode(const maps_service_h maps, maps_coordinates_list_h coordinates_list, const maps_preference_h preference, maps_service_multi_reverse_geocode_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 /**
  * @}
  */
@@ -796,7 +793,6 @@ int maps_service_multi_reverse_geocode(const maps_service_h maps, maps_coordinat
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_PLACE_MODULE Places
  * @if WEARABLE
@@ -820,7 +816,7 @@ int maps_service_multi_reverse_geocode(const maps_service_h maps, maps_coordinat
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called for each result of Place Search request.
  * @details The Maps Service invokes this callback while iterating through the set of obtained Place data.\n
  *          If search is failed, the value of @a total is 0 and @a place is NULL.
@@ -845,11 +841,11 @@ int maps_service_multi_reverse_geocode(const maps_service_h maps, maps_coordinat
  * @see maps_service_search_place_by_area()
  * @see maps_service_search_place_by_address()
  */
-typedef bool(*maps_service_search_place_cb) (maps_error_e error, int request_id, int index, int total, maps_place_h place, void *user_data);
+typedef bool(*maps_service_search_place_cb) (maps_error_e error, int request_id, int index, int total, maps_place_h place, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called for Place list of Place Search request.
  * @details The Maps Service invokes this callback when the Place data obtained from the specified coordinates.\n
  *          If search is failed, the value of @a total is 0 and @a place_list is NULL.
@@ -869,11 +865,11 @@ typedef bool(*maps_service_search_place_cb) (maps_error_e error, int request_id,
  * @see maps_service_search_place_list()
  * @see maps_place_list_foreach()
  */
-typedef void(*maps_service_search_place_list_cb) (maps_error_e error, int request_id, int total, maps_place_list_h place_list, void *user_data);
+typedef void(*maps_service_search_place_list_cb) (maps_error_e error, int request_id, int total, maps_place_list_h place_list, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called for Place detail information of Place Search request.
  * @details The Maps Service invokes this callback when the Place detail data obtained from the specified uri.\n
  *          If search is failed, @a place is NULL.
@@ -891,11 +887,11 @@ typedef void(*maps_service_search_place_list_cb) (maps_error_e error, int reques
  * @pre maps_service_get_place_details() will invoke this callback.
  * @see maps_service_get_place_details()
  */
-typedef void(*maps_service_get_place_details_cb) (maps_error_e error, int request_id, maps_place_h place, void *user_data);
+typedef void(*maps_service_get_place_details_cb) (maps_error_e error, int request_id, maps_place_h place, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries a Place information by a coordinates position and a distance.\n
  *        The request is asynchronous.
  * @details This function obtains the Place information for a specified distance around a given coordinates position.
@@ -943,11 +939,11 @@ typedef void(*maps_service_get_place_details_cb) (maps_error_e error, int reques
  * @see maps_service_provider_is_service_supported()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_service_search_place(const maps_service_h maps, const maps_coordinates_h position, int distance, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id);
+int maps_service_search_place(const maps_service_h maps, const maps_coordinates_h position, int distance, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries a Place information by a coordinates boundary.\n
  *        The request is asynchronous.
  * @details This function obtains the Place information for a specified coordinates boundary.
@@ -995,11 +991,11 @@ int maps_service_search_place(const maps_service_h maps, const maps_coordinates_
  * @see maps_service_provider_is_service_supported()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_service_search_place_by_area(const maps_service_h maps, const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id);
+int maps_service_search_place_by_area(const maps_service_h maps, const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries a Place information by a free-formed address string.\n
  *        The request is asynchronous.
  * @details This function obtains the Place information for a specified free-formed address string.
@@ -1048,11 +1044,11 @@ int maps_service_search_place_by_area(const maps_service_h maps, const maps_area
  * @see maps_service_provider_is_service_supported()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_service_search_place_by_address(const maps_service_h maps, const char *address, const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id);
+int maps_service_search_place_by_address(const maps_service_h maps, const char *address, const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries a brief Place information by a coordinates boundary./n
  *        The request is asynchronous.
  * @details This function obtains the brief Place information for a specified coordinates boundary.
@@ -1093,11 +1089,11 @@ int maps_service_search_place_by_address(const maps_service_h maps, const char *
  * @see maps_service_cancel_request()
  * @see maps_service_provider_is_service_supported()
  */
-int maps_service_search_place_list(const maps_service_h maps, const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_list_cb callback, void *user_data, int *request_id);
+int maps_service_search_place_list(const maps_service_h maps, const maps_area_h boundary, const maps_place_filter_h filter, maps_preference_h preference, maps_service_search_place_list_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries a Detail Place information by a place uri.\n
  *        The request is asynchronous.
  * @details This function obtains the Detail Place information for a specified place uri.
@@ -1137,7 +1133,7 @@ int maps_service_search_place_list(const maps_service_h maps, const maps_area_h
  * @see maps_service_cancel_request()
  * @see maps_service_provider_is_service_supported()
  */
-int maps_service_get_place_details(const maps_service_h maps, const char *uri, maps_service_get_place_details_cb callback, void *user_data, int *request_id);
+int maps_service_get_place_details(const maps_service_h maps, const char *uri, maps_service_get_place_details_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /**
@@ -1152,7 +1148,6 @@ int maps_service_get_place_details(const maps_service_h maps, const char *uri, m
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_ROUTE_MODULE Routes
  * @if WEARABLE
@@ -1177,7 +1172,7 @@ int maps_service_get_place_details(const maps_service_h maps, const char *uri, m
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when the requested routes are found.
  * @details The Maps Service invokes this callback while iterating through the set of obtained Routes.\n
  *          If search is failed, the value of @a total is 0 and @a route is NULL.
@@ -1201,11 +1196,11 @@ int maps_service_get_place_details(const maps_service_h maps, const char *uri, m
  * @see maps_service_search_route_waypoints()
  * @see maps_service_cancel_request()
  */
-typedef bool(*maps_service_search_route_cb) (maps_error_e error, int request_id, int index, int total, maps_route_h route, void *user_data);
+typedef bool(*maps_service_search_route_cb) (maps_error_e error, int request_id, int index, int total, maps_route_h route, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries the Route from origin coordinates to destination.\n
  *        The request is asynchronous.
  * @details This function gets the Route information for a specified origin and destination coordinates.
@@ -1248,11 +1243,11 @@ typedef bool(*maps_service_search_route_cb) (maps_error_e error, int request_id,
  * @see maps_service_provider_is_service_supported()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_service_search_route(const maps_service_h maps, const maps_coordinates_h origin, const maps_coordinates_h destination, maps_preference_h preference, maps_service_search_route_cb callback, void *user_data, int *request_id);
+int maps_service_search_route(const maps_service_h maps, const maps_coordinates_h origin, const maps_coordinates_h destination, maps_preference_h preference, maps_service_search_route_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries the Route, passing through a specified way points.\n
  *        The request is asynchronous.
  * @details This function gets the Route information for the Route, passing through a specified set of way points.
@@ -1296,7 +1291,7 @@ int maps_service_search_route(const maps_service_h maps, const maps_coordinates_
  * @see maps_service_provider_is_service_supported()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_service_search_route_waypoints(const maps_service_h maps, const maps_coordinates_h * waypoint_list, int waypoint_num, maps_preference_h preference, maps_service_search_route_cb callback, void *user_data, int *request_id);
+int maps_service_search_route_waypoints(const maps_service_h maps, const maps_coordinates_h * waypoint_list, int waypoint_num, maps_preference_h preference, maps_service_search_route_cb callback, void *user_data, int *request_id) TIZEN_DEPRECATED_API;
 
 /**
  * @}
index 2f7d8c2..e02d0e7 100644 (file)
@@ -19,7 +19,6 @@
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @file maps_service_internal.h
  * @brief This file contains the functions related to Maps API.
  *
@@ -30,7 +29,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called with the information about user's consent.
  * @details The Maps Service invokes this callback when the information about user's consent is obtained.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -39,10 +38,10 @@ extern "C" {
  * @pre maps_service_request_user_consent() will invoke this callback.
  * @see maps_service_request_user_consent_with_handle()
  */
-typedef void(*maps_service_request_user_consent_with_handle_cb) (bool consented, void *user_data);
+typedef void(*maps_service_request_user_consent_with_handle_cb) (bool consented, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a new Maps Service and assigns it with a handle.
  * @details While Maps Service is being created, a Maps Provider is initialized and linked with Maps Service handle.
  *          A Maps Service handle is used to query Maps Provider performing services, such as Geocoding, Searching Places, and Routing.
@@ -71,10 +70,10 @@ typedef void(*maps_service_request_user_consent_with_handle_cb) (bool consented,
  * @see maps_service_destroy()
  * @see maps_service_request_user_consent_with_handle()
  */
-int maps_service_create_without_user_consent(const char *maps_provider, maps_service_h *maps);
+int maps_service_create_without_user_consent(const char *maps_provider, maps_service_h *maps) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the user's consent to use maps data.
  * @details The function gets information whether the user agreed that the application can use maps data.
  *          If maps_service_request_user_consent_with_handle() is called when the user didn't agree yet, a popup is shown and
@@ -98,10 +97,10 @@ int maps_service_create_without_user_consent(const char *maps_provider, maps_ser
  * @post This function invokes maps_service_request_user_consent_with_handle_cb() to provide information about user consent.
  * @see maps_service_request_user_consent_with_handle_cb()
  */
-int maps_service_request_user_consent_with_handle(const maps_service_h maps, maps_service_request_user_consent_with_handle_cb callback, void *user_data);
+int maps_service_request_user_consent_with_handle(const maps_service_h maps, maps_service_request_user_consent_with_handle_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @internal
  * @brief Gets the user's consent to use maps service.
  * @details This function gets the user's consent.
@@ -117,10 +116,10 @@ int maps_service_request_user_consent_with_handle(const maps_service_h maps, map
  *
  * @see maps_service_set_user_consent()
  */
-int maps_service_get_user_consent(const maps_service_h maps, bool *consent);
+int maps_service_get_user_consent(const maps_service_h maps, bool *consent) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @internal
  * @brief Sets the user's consent to use maps service.
  * @details This function sets the user's consent.
@@ -136,7 +135,7 @@ int maps_service_get_user_consent(const maps_service_h maps, bool *consent);
  *
  * @see maps_service_get_user_consent()
  */
-int maps_service_set_user_consent(const maps_service_h maps, bool consent);
+int maps_service_set_user_consent(const maps_service_h maps, bool consent) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 3ca0c24..8042770 100644 (file)
 
 #ifndef __MAPS_TYPES_H__
 #define __MAPS_TYPES_H__
+#include <tizen.h>
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @file maps_types.h
  * @brief This file contains the top level functions of Maps API.
  */
@@ -31,7 +31,6 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_SERVICE_TYPES_MODULE Primary types
  * @addtogroup CAPI_MAPS_SERVICE_TYPES_MODULE
@@ -41,7 +40,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The Maps Service handle
  * @details The Maps Service handle can be created by calling of maps_service_create().\n
  *          To release the handle use maps_service_destroy().
@@ -53,7 +52,7 @@ typedef void *maps_service_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The View handle
  * @details The handle of View instance.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
index 3164c1f..8937688 100644 (file)
@@ -26,7 +26,6 @@
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_SERVICE_MODULE
  * @defgroup CAPI_MAPS_VIEW_MODULE View
  * @if WEARABLE
@@ -64,7 +63,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for View types (themes).
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -77,7 +76,7 @@ typedef enum _maps_view_type_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of visual objects of the View.
  * @details This callback is invoked while iterating through the list of visual objects added to the View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -91,11 +90,11 @@ typedef enum _maps_view_type_e {
  * @see #maps_view_object_h
  * @see maps_view_foreach_object()
  */
-typedef bool(*maps_view_object_cb) (int index, int total, maps_view_object_h object, void *user_data);
+typedef bool(*maps_view_object_cb) (int index, int total, maps_view_object_h object, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when the View event occurs.
  * @details The View Panel invokes this callback when the map event occurs.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -114,14 +113,14 @@ typedef bool(*maps_view_object_cb) (int index, int total, maps_view_object_h obj
  * @see maps_view_set_zoom_level()
  * @see maps_view_set_orientation()
  */
-typedef void(*maps_view_on_event_cb) (maps_view_event_type_e type, maps_view_event_data_h event_data, void *user_data);
+typedef void(*maps_view_on_event_cb) (maps_view_event_type_e type, maps_view_event_data_h event_data, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /* ----------------------CREATE AND DESTROY-----------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates the View and link it to the instance of maps service.
  * @details This function creates a new View widget, allocates all needed resources and issues its handle.\n
  *          The newly created View is linked to the specified map's service.\n
@@ -156,11 +155,11 @@ typedef void(*maps_view_on_event_cb) (maps_view_event_type_e type, maps_view_eve
  * @see maps_view_set_visibility()
  * @see elm_layout_add()
  */
-int maps_view_create(maps_service_h maps, Evas_Object *obj, maps_view_h *view);
+int maps_view_create(maps_service_h maps, Evas_Object *obj, maps_view_h *view) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the View.
  * @details This function destroys the View, releases its handle and all allocated resources, unlinks the View from the instance of maps service.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -176,14 +175,14 @@ int maps_view_create(maps_service_h maps, Evas_Object *obj, maps_view_h *view);
  * @pre @a View is created using maps_view_create().
  * @see maps_view_create()
  */
-int maps_view_destroy(maps_view_h view);
+int maps_view_destroy(maps_view_h view) TIZEN_DEPRECATED_API;
 
 
 /*----------------------MAP ZOOM, ROTATE, SET CENTER--------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Centers the map on a given geographical coordinates.
  * @details This function centers the map on a given geographical coordinates using current zoom and orientation.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -209,11 +208,11 @@ int maps_view_destroy(maps_view_h view);
  * @see maps_coordinates_create()
  * @see maps_view_create()
  */
-int maps_view_set_center(maps_view_h view, maps_coordinates_h coordinates);
+int maps_view_set_center(maps_view_h view, maps_coordinates_h coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the central coordinates of a map.
  * @details This function gets the current central coordinates of a map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -234,11 +233,11 @@ int maps_view_set_center(maps_view_h view, maps_coordinates_h coordinates);
  * @see maps_coordinates_destroy()
  * @see maps_view_create()
  */
-int maps_view_get_center(const maps_view_h view, maps_coordinates_h *coordinates);
+int maps_view_get_center(const maps_view_h view, maps_coordinates_h *coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets zoom level of the map.
  * @details This function sets the integer zoom level of the map.\n
  *          If the specified zoom level exceeds the maps Provider allowed zoom range,
@@ -267,11 +266,11 @@ int maps_view_get_center(const maps_view_h view, maps_coordinates_h *coordinates
  * @see maps_view_get_max_zoom_level()
  * @see maps_view_create()
  */
-int maps_view_set_zoom_level(maps_view_h view, int level);
+int maps_view_set_zoom_level(maps_view_h view, int level) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets zoom level of the map.
  * @details This function gets the current integer zoom level of the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -288,11 +287,11 @@ int maps_view_set_zoom_level(maps_view_h view, int level);
  * @see maps_view_get_max_zoom_level()
  * @see maps_view_create()
  */
-int maps_view_get_zoom_level(const maps_view_h view, int *level);
+int maps_view_get_zoom_level(const maps_view_h view, int *level) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the minimal zoom level of the map.
  * @details This function sets the minimally allowed zoom level of the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -315,11 +314,11 @@ int maps_view_get_zoom_level(const maps_view_h view, int *level);
  * @see maps_view_set_zoom_level()
  * @see maps_view_create()
  */
-int maps_view_set_min_zoom_level(maps_view_h view, int level);
+int maps_view_set_min_zoom_level(maps_view_h view, int level) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the minimal zoom level of the map.
  * @details This function gets the minimally allowed zoom level of the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -337,11 +336,11 @@ int maps_view_set_min_zoom_level(maps_view_h view, int level);
  * @see maps_view_set_zoom_level()
  * @see maps_view_create()
  */
-int maps_view_get_min_zoom_level(const maps_view_h view, int *min_zoom_level);
+int maps_view_get_min_zoom_level(const maps_view_h view, int *min_zoom_level) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the maximal zoom level of the map.
  * @details This function sets the maximally allowed zoom level of the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -364,11 +363,11 @@ int maps_view_get_min_zoom_level(const maps_view_h view, int *min_zoom_level);
  * @see maps_view_set_zoom_level()
  * @see maps_view_create()
  */
-int maps_view_set_max_zoom_level(maps_view_h view, int level);
+int maps_view_set_max_zoom_level(maps_view_h view, int level) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the maximal zoom level of the map.
  * @details This function gets the maximally allowed zoom level of the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -386,11 +385,11 @@ int maps_view_set_max_zoom_level(maps_view_h view, int level);
  * @see maps_view_set_zoom_level()
  * @see maps_view_create()
  */
-int maps_view_get_max_zoom_level(const maps_view_h view, int *max_zoom_level);
+int maps_view_get_max_zoom_level(const maps_view_h view, int *max_zoom_level) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the orientation on the View.
  * @details This function sets the rotation angle of the View.\n
  *          If the specified rotation angle exceeds the [0..360] range,
@@ -415,11 +414,11 @@ int maps_view_get_max_zoom_level(const maps_view_h view, int *max_zoom_level);
  * @see maps_view_set_zoom_level()
  * @see maps_view_create()
  */
-int maps_view_set_orientation(maps_view_h view, double angle);
+int maps_view_set_orientation(maps_view_h view, double angle) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the orientation.
  * @details This function gets the current map rotation angle on the View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -435,14 +434,14 @@ int maps_view_set_orientation(maps_view_h view, double angle);
  * @see maps_view_get_zoom_level()
  * @see maps_view_create()
  */
-int maps_view_get_orientation(const maps_view_h view, double *rotation_angle);
+int maps_view_get_orientation(const maps_view_h view, double *rotation_angle) TIZEN_DEPRECATED_API;
 
 
 /*----------------------SCREEN <--> GEOGRAPHY---------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Converts screen coordinates to the geographical coordinates.
  * @details This function converts screen coordinates to the geographical coordinates accordingly to the current map zoom and orientation.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -467,11 +466,11 @@ int maps_view_get_orientation(const maps_view_h view, double *rotation_angle);
  * @see maps_coordinates_destroy()
  * @see maps_view_create()
  */
-int maps_view_screen_to_geolocation(maps_view_h view, int x, int y, maps_coordinates_h *coordinates);
+int maps_view_screen_to_geolocation(maps_view_h view, int x, int y, maps_coordinates_h *coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Converts geographical coordinates to the screen coordinates.
  * @details This function converts geographical coordinates to the screen
  *          coordinates accordingly to the current map zoom and orientation.
@@ -497,14 +496,14 @@ int maps_view_screen_to_geolocation(maps_view_h view, int x, int y, maps_coordin
  * @see maps_coordinates_create()
  * @see maps_view_create()
  */
-int maps_view_geolocation_to_screen(maps_view_h view, const maps_coordinates_h coordinates, int *x, int *y);
+int maps_view_geolocation_to_screen(maps_view_h view, const maps_coordinates_h coordinates, int *x, int *y) TIZEN_DEPRECATED_API;
 
 
 /* --------------------VIEW PREFERENCES----------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets View type.
  * @details This function switches the View to a specified type, one of listed in #maps_view_type_e enumeration.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -528,11 +527,11 @@ int maps_view_geolocation_to_screen(maps_view_h view, const maps_coordinates_h c
  * @see maps_view_set_language()
  * @see maps_view_create()
  */
-int maps_view_set_type(maps_view_h view, maps_view_type_e type);
+int maps_view_set_type(maps_view_h view, maps_view_type_e type) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets View type.
  * @details This function gets the type of the given View.\n
  *          The type options are defined in the #maps_view_type_e enumeration.
@@ -550,11 +549,11 @@ int maps_view_set_type(maps_view_h view, maps_view_type_e type);
  * @see maps_view_get_language()
  * @see maps_view_create()
  */
-int maps_view_get_type(const maps_view_h view, maps_view_type_e *type);
+int maps_view_get_type(const maps_view_h view, maps_view_type_e *type) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Indicates whether the map should show the 3D buildings layer.
  * @details This function is called to indicate whether 3D buildings should be shown as a layer on the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -580,11 +579,11 @@ int maps_view_get_type(const maps_view_h view, maps_view_type_e *type);
  * @see maps_view_get_buildings_enabled()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_view_set_buildings_enabled(maps_view_h view, bool enable);
+int maps_view_set_buildings_enabled(maps_view_h view, bool enable) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries whether the map has the 3D buildings layer enabled.
  * @details This function checks whether the map is set to show the 3D buildings layer.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -600,11 +599,11 @@ int maps_view_set_buildings_enabled(maps_view_h view, bool enable);
  * @see maps_view_set_buildings_enabled()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_view_get_buildings_enabled(const maps_view_h view, bool *enable);
+int maps_view_get_buildings_enabled(const maps_view_h view, bool *enable) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Indicates whether the map should show the traffic layer.
  * @details This function is called to indicate whether traffic conditions should be shown as a layer on the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -630,11 +629,11 @@ int maps_view_get_buildings_enabled(const maps_view_h view, bool *enable);
  * @see maps_view_get_traffic_enabled()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_view_set_traffic_enabled(maps_view_h view, bool enable);
+int maps_view_set_traffic_enabled(maps_view_h view, bool enable) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries whether the map has the traffic layer enabled.
  * @details This function checks whether the map is set to show the traffic layer.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -650,11 +649,11 @@ int maps_view_set_traffic_enabled(maps_view_h view, bool enable);
  * @see maps_view_set_traffic_enabled()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_view_get_traffic_enabled(const maps_view_h view, bool *enable);
+int maps_view_get_traffic_enabled(const maps_view_h view, bool *enable) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Indicates whether the map should show the public transit layer.
  * @details This function is called to indicate whether public transit routes should be shown as a layer on the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -680,11 +679,11 @@ int maps_view_get_traffic_enabled(const maps_view_h view, bool *enable);
  * @see maps_view_get_public_transit_enabled()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_view_set_public_transit_enabled(maps_view_h view, bool enable);
+int maps_view_set_public_transit_enabled(maps_view_h view, bool enable) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Queries whether the map has the public transit layer enabled.
  * @details This function checks whether the map is set to show the public transit routes layer.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -700,11 +699,11 @@ int maps_view_set_public_transit_enabled(maps_view_h view, bool enable);
  * @see maps_view_set_public_transit_enabled()
  * @see maps_service_provider_is_data_supported()
  */
-int maps_view_get_public_transit_enabled(const maps_view_h view, bool *enable);
+int maps_view_get_public_transit_enabled(const maps_view_h view, bool *enable) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets View language.
  * @details This function sets the language to the given View.\n
  *          Note that map display language is different from places and route language.
@@ -736,11 +735,11 @@ int maps_view_get_public_transit_enabled(const maps_view_h view, bool *enable);
  * @see maps_view_set_type()
  * @see maps_view_create()
  */
-int maps_view_set_language(maps_view_h view, const char *language);
+int maps_view_set_language(maps_view_h view, const char *language) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets View language.
  * @details This function gets the language set to the View.\n
  *          Note that map display language is different from places and route language.
@@ -759,11 +758,11 @@ int maps_view_set_language(maps_view_h view, const char *language);
  * @see maps_view_get_type()
  * @see maps_view_create()
  */
-int maps_view_get_language(const maps_view_h view, char **language);
+int maps_view_get_language(const maps_view_h view, char **language) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enables or disables scalebar.
  * @details This function enables or disables scalebar.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -785,11 +784,11 @@ int maps_view_get_language(const maps_view_h view, char **language);
  * @see maps_view_create()
  * @see maps_view_get_scalebar_enabled()
  */
-int maps_view_set_scalebar_enabled(maps_view_h view, bool enable);
+int maps_view_set_scalebar_enabled(maps_view_h view, bool enable) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets whether the scalebar is enabled or not.
  * @details This function gets whether the scalebar is enabled or not.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -804,14 +803,14 @@ int maps_view_set_scalebar_enabled(maps_view_h view, bool enable);
  * @see maps_view_create()
  * @see maps_view_set_scalebar_enabled()
  */
-int maps_view_get_scalebar_enabled(const maps_view_h view, bool *enabled);
+int maps_view_get_scalebar_enabled(const maps_view_h view, bool *enabled) TIZEN_DEPRECATED_API;
 
 
 /* --------------------MAPS PANEL MANIPULATIONS-------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the View port.
  * @details This function gets the View port as a pointer on Evas_Object.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -826,11 +825,11 @@ int maps_view_get_scalebar_enabled(const maps_view_h view, bool *enabled);
  * @see maps_view_create()
  * @see Evas_Object
  */
-int maps_view_get_viewport(const maps_view_h view, Evas_Object **viewport);
+int maps_view_get_viewport(const maps_view_h view, Evas_Object **viewport) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets geometry of View port.
  * @details This function set the position and (rectangular) size of the given View.\n
  *          The position, naturally, will be relative to the top left corner of the parent window.
@@ -858,11 +857,11 @@ int maps_view_get_viewport(const maps_view_h view, Evas_Object **viewport);
  * @see maps_view_set_visibility()
  * @see maps_view_create()
  */
-int maps_view_set_screen_location(maps_view_h view, int x, int y, int width, int height);
+int maps_view_set_screen_location(maps_view_h view, int x, int y, int width, int height) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets geometry of View port.
  * @details This function retrieves the position and (rectangular) size of the given View.\n
  *          The position, naturally, will be relative to the top left corner of the parent window.
@@ -884,11 +883,11 @@ int maps_view_set_screen_location(maps_view_h view, int x, int y, int width, int
  * @see maps_view_get_visibility()
  * @see maps_view_create()
  */
-int maps_view_get_screen_location(const maps_view_h view, int *x, int *y, int *width, int *height);
+int maps_view_get_screen_location(const maps_view_h view, int *x, int *y, int *width, int *height) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Moves the View.
  * @details This function moves View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -907,11 +906,11 @@ int maps_view_get_screen_location(const maps_view_h view, int *x, int *y, int *w
  * @see maps_view_set_visibility()
  * @see maps_view_create()
  */
-int maps_view_move(maps_view_h view, int x, int y);
+int maps_view_move(maps_view_h view, int x, int y) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Resizes the View.
  * @details This function changes the size of the given View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -937,11 +936,11 @@ int maps_view_move(maps_view_h view, int x, int y);
  * @see maps_view_set_visibility()
  * @see maps_view_create()
  */
-int maps_view_resize(maps_view_h view, int width, int height);
+int maps_view_resize(maps_view_h view, int width, int height) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Shows or hides the View.
  * @details This function changes the visibility of View on the screen.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -957,11 +956,11 @@ int maps_view_resize(maps_view_h view, int width, int height);
  * @see maps_view_set_screen_location()
  * @see maps_view_create()
  */
-int maps_view_set_visibility(maps_view_h view, bool visible);
+int maps_view_set_visibility(maps_view_h view, bool visible) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the View visibility.
  * @details This function retrieves whether or not the given View is visible.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -977,14 +976,14 @@ int maps_view_set_visibility(maps_view_h view, bool visible);
  * @see maps_view_set_screen_location()
  * @see maps_view_create()
  */
-int maps_view_get_visibility(const maps_view_h view, bool *visible);
+int maps_view_get_visibility(const maps_view_h view, bool *visible) TIZEN_DEPRECATED_API;
 
 
 /* ---------------------UI CONTROL------------------------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the event callback.
  * @details This function sets the callback which will be invoked every time the View processes the user's gesture, action and objects over the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1004,11 +1003,11 @@ int maps_view_get_visibility(const maps_view_h view, bool *visible);
  * @see maps_view_set_gesture_enabled()
  * @see maps_view_create()
  */
-int maps_view_set_event_cb(maps_view_h view, maps_view_event_type_e type, maps_view_on_event_cb callback, void *user_data);
+int maps_view_set_event_cb(maps_view_h view, maps_view_event_type_e type, maps_view_on_event_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Unsets the event callback.
  * @details This function unsets the event callback.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1025,11 +1024,11 @@ int maps_view_set_event_cb(maps_view_h view, maps_view_event_type_e type, maps_v
  * @see maps_view_get_gesture_enabled()
  * @see maps_view_create()
  */
-int maps_view_unset_event_cb(maps_view_h view, maps_view_event_type_e type);
+int maps_view_unset_event_cb(maps_view_h view, maps_view_event_type_e type) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enables or disables the map gesture.
  * @details This function enables or disables the map gesture.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1046,11 +1045,11 @@ int maps_view_unset_event_cb(maps_view_h view, maps_view_event_type_e type);
  * @see maps_view_get_gesture_enabled()
  * @see maps_view_create()
  */
-int maps_view_set_gesture_enabled(maps_view_h view, maps_view_gesture_e gesture, bool enabled);
+int maps_view_set_gesture_enabled(maps_view_h view, maps_view_gesture_e gesture, bool enabled) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Checks whether the map gesture is enabled or not.
  * @details This function checks whether the map gesture is enabled or not.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1069,14 +1068,14 @@ int maps_view_set_gesture_enabled(maps_view_h view, maps_view_gesture_e gesture,
  * @see maps_view_set_gesture_enabled()
  * @see maps_view_create()
  */
-int maps_view_get_gesture_enabled(const maps_view_h view, maps_view_gesture_e gesture, bool *enabled);
+int maps_view_get_gesture_enabled(const maps_view_h view, maps_view_gesture_e gesture, bool *enabled) TIZEN_DEPRECATED_API;
 
 
 /* ---------------------VISUAL OBJECTS ON THE MAP-----------------------------*/
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Adds a visual object on the map.
  * @details This function adds a visual object on the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1102,11 +1101,11 @@ int maps_view_get_gesture_enabled(const maps_view_h view, maps_view_gesture_e ge
  * @see maps_view_remove_all_objects()
  * @see maps_view_create()
  */
-int maps_view_add_object(maps_view_h view, maps_view_object_h object);
+int maps_view_add_object(maps_view_h view, maps_view_object_h object) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Removes a visual object from the map.
  * @details This function removes a visual object from the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1128,11 +1127,11 @@ int maps_view_add_object(maps_view_h view, maps_view_object_h object);
  * @see #maps_view_object_h
  * @see maps_view_create()
  */
-int maps_view_remove_object(maps_view_h view, maps_view_object_h object);
+int maps_view_remove_object(maps_view_h view, maps_view_object_h object) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Removes all visual objects from the map.
  * @details This function removes all visual object from the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1152,11 +1151,11 @@ int maps_view_remove_object(maps_view_h view, maps_view_object_h object);
  * @see maps_view_add_object()
  * @see maps_view_create()
  */
-int maps_view_remove_all_objects(maps_view_h view);
+int maps_view_remove_all_objects(maps_view_h view) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all visual objects on the map.
  * @details This function retrieves all visual objects previously added to the map.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -1180,7 +1179,7 @@ int maps_view_remove_all_objects(maps_view_h view);
  * @see maps_view_remove_all_objects()
  * @see maps_view_create()
  */
-int maps_view_foreach_object(const maps_view_h view, maps_view_object_cb callback, void *user_data);
+int maps_view_foreach_object(const maps_view_h view, maps_view_object_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
index 0b264c1..cfd3cea 100644 (file)
@@ -19,7 +19,6 @@
 #define __MAPS_VIEW_EVENT_DATA_H__
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_VIEW_MODULE
  * @defgroup CAPI_MAPS_VIEW_EVENT_DATA_MODULE View Event Data
  * @file maps_view_event_data.h
@@ -76,7 +75,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The View Event data handle.
  * @details The handle of View Event Data instance.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -89,7 +88,7 @@ typedef void *maps_view_event_data_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for View actions.
  * @details This is an enumeration of View actions capable to perform.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -109,7 +108,7 @@ typedef enum _maps_view_action_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for user gestures over View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -126,7 +125,7 @@ typedef enum _maps_view_gesture_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for map event types.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -139,7 +138,7 @@ typedef enum _maps_view_event_type_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the event data handle.
  * @details This function destroys the event data handle and releases all its resources.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -153,11 +152,11 @@ typedef enum _maps_view_event_type_e {
  * @see #maps_view_event_data_h
  * @see maps_view_event_data_clone()
  */
-int maps_view_event_data_destroy(maps_view_event_data_h event);
+int maps_view_event_data_destroy(maps_view_event_data_h event) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Clones the event handle.
  * @details This function clones the event handle @a origin and all its resources.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -175,11 +174,11 @@ int maps_view_event_data_destroy(maps_view_event_data_h event);
  * @see maps_view_event_data_destroy()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_clone(const maps_view_event_data_h origin, maps_view_event_data_h *cloned);
+int maps_view_event_data_clone(const maps_view_event_data_h origin, maps_view_event_data_h *cloned) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the event type.
  * @details This function gets the event type.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -196,11 +195,11 @@ int maps_view_event_data_clone(const maps_view_event_data_h origin, maps_view_ev
  * @see maps_view_event_data_destroy()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_type(const maps_view_event_data_h event, maps_view_event_type_e *event_type);
+int maps_view_event_data_get_type(const maps_view_event_data_h event, maps_view_event_type_e *event_type) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the event gesture type.
  * @details This function gets the event gesture type if the event type is #MAPS_VIEW_EVENT_GESTURE or #MAPS_VIEW_EVENT_OBJECT.
  *          Otherwise it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -218,11 +217,11 @@ int maps_view_event_data_get_type(const maps_view_event_data_h event, maps_view_
  * @see maps_view_event_data_get_type()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_gesture_type(const maps_view_event_data_h event, maps_view_gesture_e *gesture_type);
+int maps_view_event_data_get_gesture_type(const maps_view_event_data_h event, maps_view_gesture_e *gesture_type) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the event action type.
  * @details This function gets the event action type if the event type is #MAPS_VIEW_EVENT_ACTION.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -240,11 +239,11 @@ int maps_view_event_data_get_gesture_type(const maps_view_event_data_h event, ma
  * @see maps_view_event_data_get_type()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_action_type(const maps_view_event_data_h event, maps_view_action_e *action_type);
+int maps_view_event_data_get_action_type(const maps_view_event_data_h event, maps_view_action_e *action_type) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the new map center coordinates.
  * @details This function gets the new map center coordinates if the event type is #MAPS_VIEW_EVENT_ACTION.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -264,11 +263,11 @@ int maps_view_event_data_get_action_type(const maps_view_event_data_h event, map
  * @see maps_view_event_data_get_type()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_center(const maps_view_event_data_h event, maps_coordinates_h *center);
+int maps_view_event_data_get_center(const maps_view_event_data_h event, maps_coordinates_h *center) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the new map center movement coordinates delta.
  * @details This function gets the screen coordinates delta of map center movement if the event type is #MAPS_VIEW_EVENT_ACTION.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -287,11 +286,11 @@ int maps_view_event_data_get_center(const maps_view_event_data_h event, maps_coo
  * @see maps_view_event_data_get_type()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_delta(const maps_view_event_data_h event, int *delta_x, int *delta_y);
+int maps_view_event_data_get_delta(const maps_view_event_data_h event, int *delta_x, int *delta_y) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the event screen coordinates.
  * @details This function gets the event screen coordinates if the event type is #MAPS_VIEW_EVENT_GESTURE or #MAPS_VIEW_EVENT_OBJECT.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -310,11 +309,11 @@ int maps_view_event_data_get_delta(const maps_view_event_data_h event, int *delt
  * @see maps_view_event_data_get_type()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_position(const maps_view_event_data_h event, int *x, int *y);
+int maps_view_event_data_get_position(const maps_view_event_data_h event, int *x, int *y) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the event geographic coordinates.
  * @details This function gets the event geographic coordinates if the event type is #MAPS_VIEW_EVENT_GESTURE.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -334,11 +333,11 @@ int maps_view_event_data_get_position(const maps_view_event_data_h event, int *x
  * @see maps_view_event_data_get_type()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_coordinates(const maps_view_event_data_h event, maps_coordinates_h *coordinates);
+int maps_view_event_data_get_coordinates(const maps_view_event_data_h event, maps_coordinates_h *coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the number of fingers, detected in the event.
  * @details This function gets the number of user's fingers detected in the event if the event type is #MAPS_VIEW_EVENT_GESTURE or #MAPS_VIEW_EVENT_OBJECT.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -356,11 +355,11 @@ int maps_view_event_data_get_coordinates(const maps_view_event_data_h event, map
  * @see maps_view_event_data_get_type()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_fingers(const maps_view_event_data_h event, int *fingers);
+int maps_view_event_data_get_fingers(const maps_view_event_data_h event, int *fingers) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets zoom factor of zoom gesture or action.
  * @details This function gets the corresponding zoom factor if the event type is #MAPS_VIEW_EVENT_GESTURE or #MAPS_VIEW_EVENT_ACTION.
  *          Otherwise, it returns the #MAPS_ERROR_INVALID_PARAMETER.
@@ -378,11 +377,11 @@ int maps_view_event_data_get_fingers(const maps_view_event_data_h event, int *fi
  * @see maps_view_event_data_get_type()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_zoom_factor(const maps_view_event_data_h event, double *zoom_factor);
+int maps_view_event_data_get_zoom_factor(const maps_view_event_data_h event, double *zoom_factor) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets rotation angle of rotation gesture or action.
  * @details This function gets the corresponding rotation angle if the event type is #MAPS_VIEW_EVENT_GESTURE or #MAPS_VIEW_EVENT_ACTION.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -400,11 +399,11 @@ int maps_view_event_data_get_zoom_factor(const maps_view_event_data_h event, dou
  * @see maps_view_event_data_get_type()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_rotation_angle(const maps_view_event_data_h event, double *rotation_angle);
+int maps_view_event_data_get_rotation_angle(const maps_view_event_data_h event, double *rotation_angle) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets object of event.
  * @details When the event type is #MAPS_VIEW_EVENT_OBJECT, this function gets the corresponding object handle.
  *          Otherwise, it returns #MAPS_ERROR_INVALID_PARAMETER.
@@ -423,7 +422,7 @@ int maps_view_event_data_get_rotation_angle(const maps_view_event_data_h event,
  * @see maps_view_event_data_get_type()
  * @see maps_view_on_event_cb()
  */
-int maps_view_event_data_get_object(const maps_view_event_data_h event, maps_view_object_h *object);
+int maps_view_event_data_get_object(const maps_view_event_data_h event, maps_view_object_h *object) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index ed5e9d8..ec3a537 100644 (file)
@@ -24,7 +24,6 @@
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_VIEW_MODULE
  * @defgroup CAPI_MAPS_VIEW_OBJECT_MODULE View Object
  * @file maps_view_object.h
@@ -46,7 +45,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief The View Object handle.
  * @details The handle of an arbitrary visual object instance.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -63,7 +62,7 @@ typedef void *maps_view_object_h;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for visual object types.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -76,7 +75,7 @@ typedef enum _maps_view_object_type_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for map marker types.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -87,7 +86,7 @@ typedef enum _maps_view_marker_type_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for overlay types.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -99,7 +98,7 @@ typedef enum _maps_view_overlay_type_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of points of the polyline.
  * @details This callback is invoked while iterating through the list of points, added to the polyline.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -115,11 +114,11 @@ typedef enum _maps_view_overlay_type_e {
  * @see maps_view_object_polyline_foreach_point()
  * @see #maps_coordinates_h
  */
-typedef bool(*maps_view_object_polyline_point_cb) (int index, int total, maps_coordinates_h point, void *user_data);
+typedef bool(*maps_view_object_polyline_point_cb) (int index, int total, maps_coordinates_h point, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Called when requesting the list of points of the polygon.
  * @details This callback is invoked while iterating through the list of points, added to the polygon.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -135,7 +134,7 @@ typedef bool(*maps_view_object_polyline_point_cb) (int index, int total, maps_co
  * @see maps_view_object_polygon_foreach_point()
  * @see #maps_coordinates_h
  */
-typedef bool(*maps_view_object_polygon_point_cb) (int index, int total, maps_coordinates_h point, void *user_data);
+typedef bool(*maps_view_object_polygon_point_cb) (int index, int total, maps_coordinates_h point, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
@@ -145,7 +144,7 @@ typedef bool(*maps_view_object_polygon_point_cb) (int index, int total, maps_coo
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a marker visual object.
  * @details This function creates a marker on a given geographical coordinates.
  *          The marker is specified with a given image file and a type.
@@ -174,11 +173,11 @@ typedef bool(*maps_view_object_polygon_point_cb) (int index, int total, maps_coo
  * @see maps_view_object_destroy()
  * @see #maps_coordinates_h
  */
-int maps_view_object_create_marker(maps_coordinates_h coordinates, const char *image_file_path, maps_view_marker_type_e type, maps_view_object_h *marker);
+int maps_view_object_create_marker(maps_coordinates_h coordinates, const char *image_file_path, maps_view_marker_type_e type, maps_view_object_h *marker) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a polyline visual object.
  * @details This function creates a polyline visual object, specified with a list of geographical coordinates, line width and color.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -206,11 +205,11 @@ int maps_view_object_create_marker(maps_coordinates_h coordinates, const char *i
  * @see #maps_coordinates_list_h
  * @see maps_coordinates_list_create()
  */
-int maps_view_object_create_polyline(maps_coordinates_list_h coordinates, unsigned char r, unsigned char g, unsigned char b, unsigned char a, int width, maps_view_object_h *polyline);
+int maps_view_object_create_polyline(maps_coordinates_list_h coordinates, unsigned char r, unsigned char g, unsigned char b, unsigned char a, int width, maps_view_object_h *polyline) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates a polygon visual object.
  * @details This function creates a polygon visual object, specified with a list of geographical coordinates and fill color.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -237,11 +236,11 @@ int maps_view_object_create_polyline(maps_coordinates_list_h coordinates, unsign
  * @see #maps_coordinates_list_h
  * @see maps_coordinates_list_create()
  */
-int maps_view_object_create_polygon(maps_coordinates_list_h coordinates, unsigned char r, unsigned char g, unsigned char b, unsigned char a, maps_view_object_h *polygon);
+int maps_view_object_create_polygon(maps_coordinates_list_h coordinates, unsigned char r, unsigned char g, unsigned char b, unsigned char a, maps_view_object_h *polygon) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Creates an overlay object.
  * @details This function creates an overlay object to contain Evas objects.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -267,11 +266,11 @@ int maps_view_object_create_polygon(maps_coordinates_list_h coordinates, unsigne
  * @see #maps_coordinates_h
  * @see maps_coordinates_create()
  */
-int maps_view_object_create_overlay(maps_coordinates_h coordinates, Evas_Object *object, maps_view_overlay_type_e type, maps_view_object_h *overlay);
+int maps_view_object_create_overlay(maps_coordinates_h coordinates, Evas_Object *object, maps_view_overlay_type_e type, maps_view_object_h *overlay) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Destroys the object.
  * @details This function destroys the object handle and releases all its resources.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -286,11 +285,11 @@ int maps_view_object_create_overlay(maps_coordinates_h coordinates, Evas_Object
  * @see maps_view_object_create_polygon()
  * @see maps_view_object_create_polyline()
  */
-int maps_view_object_destroy(maps_view_object_h object);
+int maps_view_object_destroy(maps_view_object_h object) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the object type.
  * @details This function gets the object type.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -307,11 +306,11 @@ int maps_view_object_destroy(maps_view_object_h object);
  * @see maps_view_object_create_polyline()
  * @see maps_view_object_create_polygon()
  */
-int maps_view_object_get_type(maps_view_object_h object, maps_view_object_type_e *type);
+int maps_view_object_get_type(maps_view_object_h object, maps_view_object_type_e *type) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Shows the object.
  * @details This function changes the visibility of the given object on the View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -326,11 +325,11 @@ int maps_view_object_get_type(maps_view_object_h object, maps_view_object_type_e
  * @see #maps_view_object_h
  * @see maps_view_object_get_visible()
  */
-int maps_view_object_set_visible(maps_view_object_h object, bool visible);
+int maps_view_object_set_visible(maps_view_object_h object, bool visible) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the object visibility.
  * @details This function retrieves whether or not the given object is visible.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -345,7 +344,7 @@ int maps_view_object_set_visible(maps_view_object_h object, bool visible);
  * @see #maps_view_object_h
  * @see maps_view_object_set_visible()
  */
-int maps_view_object_get_visible(const maps_view_object_h object, bool *visible);
+int maps_view_object_get_visible(const maps_view_object_h object, bool *visible) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
@@ -355,7 +354,7 @@ int maps_view_object_get_visible(const maps_view_object_h object, bool *visible)
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets points to the polyline.
  * @details This function sets point list to the polyline.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -375,11 +374,11 @@ int maps_view_object_get_visible(const maps_view_object_h object, bool *visible)
  * @see maps_view_object_create_polyline()
  * @see maps_view_object_polyline_foreach_point()
  */
-int maps_view_object_polyline_set_polyline(maps_view_object_h polyline, maps_coordinates_list_h points);
+int maps_view_object_polyline_set_polyline(maps_view_object_h polyline, maps_coordinates_list_h points) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all points, added to the polyline.
  * @details This function retrieves all points, added to the polyline.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -399,11 +398,11 @@ int maps_view_object_polyline_set_polyline(maps_view_object_h polyline, maps_coo
  * @see maps_view_object_polyline_set_polyline()
  * @see maps_view_object_polyline_point_cb()
  */
-int maps_view_object_polyline_foreach_point(maps_view_object_h polyline, maps_coordinates_cb callback, void *user_data);
+int maps_view_object_polyline_foreach_point(maps_view_object_h polyline, maps_coordinates_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the polyline color.
  * @details This function sets the polyline color on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -422,11 +421,11 @@ int maps_view_object_polyline_foreach_point(maps_view_object_h polyline, maps_co
  * @see maps_view_object_polyline_set_width()
  * @see maps_view_object_create_polyline()
  */
-int maps_view_object_polyline_set_color(maps_view_object_h polyline, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
+int maps_view_object_polyline_set_color(maps_view_object_h polyline, unsigned char r, unsigned char g, unsigned char b, unsigned char a) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the polyline color.
  * @details This function gets the polyline color on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -446,11 +445,11 @@ int maps_view_object_polyline_set_color(maps_view_object_h polyline, unsigned ch
  * @see maps_view_object_polyline_get_width()
  * @see maps_view_object_create_polyline()
  */
-int maps_view_object_polyline_get_color(const maps_view_object_h polyline, unsigned char *r, unsigned char *g, unsigned char *b, unsigned char *a);
+int maps_view_object_polyline_get_color(const maps_view_object_h polyline, unsigned char *r, unsigned char *g, unsigned char *b, unsigned char *a) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the polyline width.
  * @details This function sets the polyline width on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -466,11 +465,11 @@ int maps_view_object_polyline_get_color(const maps_view_object_h polyline, unsig
  * @see maps_view_object_polyline_set_color()
  * @see maps_view_object_create_polyline()
  */
-int maps_view_object_polyline_set_width(maps_view_object_h polyline, int width);
+int maps_view_object_polyline_set_width(maps_view_object_h polyline, int width) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the polyline width.
  * @details This function gets the polyline width on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -487,7 +486,7 @@ int maps_view_object_polyline_set_width(maps_view_object_h polyline, int width);
  * @see maps_view_object_polyline_get_color()
  * @see maps_view_object_create_polyline()
  */
-int maps_view_object_polyline_get_width(const maps_view_object_h polyline, int *width);
+int maps_view_object_polyline_get_width(const maps_view_object_h polyline, int *width) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
@@ -497,7 +496,7 @@ int maps_view_object_polyline_get_width(const maps_view_object_h polyline, int *
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets points to the polygon.
  * @details This function sets point list to the polygon.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -516,11 +515,11 @@ int maps_view_object_polyline_get_width(const maps_view_object_h polyline, int *
  * @see maps_coordinates_list_create()
  * @see maps_view_object_polygon_foreach_point()
  */
-int maps_view_object_polygon_set_polygon(maps_view_object_h polygon, maps_coordinates_list_h points);
+int maps_view_object_polygon_set_polygon(maps_view_object_h polygon, maps_coordinates_list_h points) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Retrieves all points, added to the polygon.
  * @details This function retrieves all points, added to the polygon.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -542,11 +541,11 @@ int maps_view_object_polygon_set_polygon(maps_view_object_h polygon, maps_coordi
  * @see #maps_view_object_h
  * @see maps_view_object_polygon_set_polygon()
  */
-int maps_view_object_polygon_foreach_point(maps_view_object_h polygon, maps_coordinates_cb callback, void *user_data);
+int maps_view_object_polygon_foreach_point(maps_view_object_h polygon, maps_coordinates_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets polygon fill color.
  * @details This function sets the polygon fill color on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -564,11 +563,11 @@ int maps_view_object_polygon_foreach_point(maps_view_object_h polygon, maps_coor
  * @see maps_view_object_polygon_get_fill_color()
  * @see maps_view_object_create_polygon()
  */
-int maps_view_object_polygon_set_fill_color(maps_view_object_h polygon, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
+int maps_view_object_polygon_set_fill_color(maps_view_object_h polygon, unsigned char r, unsigned char g, unsigned char b, unsigned char a) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets polygon fill color.
  * @details This function gets the polygon fill color on canvas.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -587,7 +586,7 @@ int maps_view_object_polygon_set_fill_color(maps_view_object_h polygon, unsigned
  * @see maps_view_object_polygon_set_fill_color()
  * @see maps_view_object_create_polygon()
  */
-int maps_view_object_polygon_get_fill_color(const maps_view_object_h polygon, unsigned char *r, unsigned char *g, unsigned char *b, unsigned char *a);
+int maps_view_object_polygon_get_fill_color(const maps_view_object_h polygon, unsigned char *r, unsigned char *g, unsigned char *b, unsigned char *a) TIZEN_DEPRECATED_API;
 
 
 /*----------------------------------------------------------------------------*/
@@ -597,7 +596,7 @@ int maps_view_object_polygon_get_fill_color(const maps_view_object_h polygon, un
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the marker coordinates.
  * @details This function sets the marker geographical coordinates.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -615,11 +614,11 @@ int maps_view_object_polygon_get_fill_color(const maps_view_object_h polygon, un
  * @see #maps_coordinates_h
  * @see maps_coordinates_create()
  */
-int maps_view_object_marker_set_coordinates(maps_view_object_h marker, maps_coordinates_h coordinates);
+int maps_view_object_marker_set_coordinates(maps_view_object_h marker, maps_coordinates_h coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the marker screen size.
  * @details This function sets the marker screen size.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -638,11 +637,11 @@ int maps_view_object_marker_set_coordinates(maps_view_object_h marker, maps_coor
  * @see maps_view_object_create_marker()
  * @see maps_view_object_marker_get_size()
  */
-int maps_view_object_marker_resize(maps_view_object_h marker, int width, int height);
+int maps_view_object_marker_resize(maps_view_object_h marker, int width, int height) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the marker image file path.
  * @details This function sets the marker image file path.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -660,11 +659,11 @@ int maps_view_object_marker_resize(maps_view_object_h marker, int width, int hei
  * @see maps_view_object_marker_get_image_file()
  * @see maps_view_object_create_marker()
  */
-int maps_view_object_marker_set_image_file(maps_view_object_h marker, const char *file_path);
+int maps_view_object_marker_set_image_file(maps_view_object_h marker, const char *file_path) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the marker image file path.
  * @details This function gets the marker image file path.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -682,11 +681,11 @@ int maps_view_object_marker_set_image_file(maps_view_object_h marker, const char
  * @see maps_view_object_marker_set_image_file()
  * @see maps_view_object_create_marker()
  */
-int maps_view_object_marker_get_image_file(const maps_view_object_h marker, char **file_path);
+int maps_view_object_marker_get_image_file(const maps_view_object_h marker, char **file_path) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the marker coordinates.
  * @details This function gets the marker geographical coordinates.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -705,11 +704,11 @@ int maps_view_object_marker_get_image_file(const maps_view_object_h marker, char
  * @see #maps_coordinates_h
  * @see maps_view_object_create_marker()
  */
-int maps_view_object_marker_get_coordinates(const maps_view_object_h marker, maps_coordinates_h *coordinates);
+int maps_view_object_marker_get_coordinates(const maps_view_object_h marker, maps_coordinates_h *coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the marker screen size.
  * @details This function gets the marker size on the screen.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -726,11 +725,11 @@ int maps_view_object_marker_get_coordinates(const maps_view_object_h marker, map
  * @see maps_view_object_marker_resize()
  * @see maps_view_object_create_marker()
  */
-int maps_view_object_marker_get_size(const maps_view_object_h marker, int *width, int *height);
+int maps_view_object_marker_get_size(const maps_view_object_h marker, int *width, int *height) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the marker type.
  * @details This function gets the marker type.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -745,11 +744,11 @@ int maps_view_object_marker_get_size(const maps_view_object_h marker, int *width
  * @see #maps_view_marker_type_e
  * @see maps_view_object_create_marker()
  */
-int maps_view_object_marker_get_type(const maps_view_object_h marker, maps_view_marker_type_e *type);
+int maps_view_object_marker_get_type(const maps_view_object_h marker, maps_view_marker_type_e *type) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the marker z-order.
  * @details This function sets the z-order.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -765,11 +764,11 @@ int maps_view_object_marker_get_type(const maps_view_object_h marker, maps_view_
  * @see maps_view_object_create_marker()
  * @see maps_view_object_marker_get_z_order()
  */
-int maps_view_object_marker_set_z_order(maps_view_object_h marker, int z_order);
+int maps_view_object_marker_set_z_order(maps_view_object_h marker, int z_order) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the marker z-order.
  * @details This function gets the z-order.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -784,7 +783,7 @@ int maps_view_object_marker_set_z_order(maps_view_object_h marker, int z_order);
  * @see maps_view_object_create_marker()
  * @see maps_view_object_marker_set_z_order()
  */
-int maps_view_object_marker_get_z_order(const maps_view_object_h marker, int *z_order);
+int maps_view_object_marker_get_z_order(const maps_view_object_h marker, int *z_order) TIZEN_DEPRECATED_API;
 
 
 
@@ -795,7 +794,7 @@ int maps_view_object_marker_get_z_order(const maps_view_object_h marker, int *z_
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the Evas object.
  * @details This function gets the Evas object.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -810,11 +809,11 @@ int maps_view_object_marker_get_z_order(const maps_view_object_h marker, int *z_
  * @pre @a marker is created using maps_view_object_create_overlay().
  * @see maps_view_object_create_overlay()
  */
-int maps_view_object_overlay_get_object(maps_view_object_h overlay, Evas_Object **object);
+int maps_view_object_overlay_get_object(maps_view_object_h overlay, Evas_Object **object) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the overlay coordinates.
  * @details This function sets the overlay geographical coordinates.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -832,11 +831,11 @@ int maps_view_object_overlay_get_object(maps_view_object_h overlay, Evas_Object
  * @see #maps_coordinates_h
  * @see maps_coordinates_create()
  */
-int maps_view_object_overlay_set_coordinates(maps_view_object_h overlay, maps_coordinates_h coordinates);
+int maps_view_object_overlay_set_coordinates(maps_view_object_h overlay, maps_coordinates_h coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the overlay coordinates.
  * @details This function gets the overlay geographical coordinates.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -856,11 +855,11 @@ int maps_view_object_overlay_set_coordinates(maps_view_object_h overlay, maps_co
  * @see #maps_coordinates_h
  * @see maps_coordinates_destroy()
  */
-int maps_view_object_overlay_get_coordinates(const maps_view_object_h overlay, maps_coordinates_h *coordinates);
+int maps_view_object_overlay_get_coordinates(const maps_view_object_h overlay, maps_coordinates_h *coordinates) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the minimal zoom level for overlay.
  * @details This function sets the minimally allowed zoom level of the map to show the overlay.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -877,11 +876,11 @@ int maps_view_object_overlay_get_coordinates(const maps_view_object_h overlay, m
  * @see maps_view_object_overlay_set_max_zoom_level()
  * @see maps_view_object_overlay_get_max_zoom_level()
  */
-int maps_view_object_overlay_set_min_zoom_level(maps_view_object_h overlay, int zoom);
+int maps_view_object_overlay_set_min_zoom_level(maps_view_object_h overlay, int zoom) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the minimal zoom level for overlay.
  * @details This function gets the minimally allowed zoom level of the map to show the overlay.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -898,11 +897,11 @@ int maps_view_object_overlay_set_min_zoom_level(maps_view_object_h overlay, int
  * @see maps_view_object_overlay_set_max_zoom_level()
  * @see maps_view_object_overlay_get_max_zoom_level()
  */
-int maps_view_object_overlay_get_min_zoom_level(const maps_view_object_h overlay, int *zoom);
+int maps_view_object_overlay_get_min_zoom_level(const maps_view_object_h overlay, int *zoom) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the minimal zoom level for overlay.
  * @details This function sets the minimally allowed zoom level of the map to show the overlay.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -919,11 +918,11 @@ int maps_view_object_overlay_get_min_zoom_level(const maps_view_object_h overlay
  * @see maps_view_object_overlay_set_min_zoom_level()
  * @see maps_view_object_overlay_get_max_zoom_level()
  */
-int maps_view_object_overlay_set_max_zoom_level(maps_view_object_h overlay, int zoom);
+int maps_view_object_overlay_set_max_zoom_level(maps_view_object_h overlay, int zoom) TIZEN_DEPRECATED_API;
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the minimal zoom level for overlay.
  * @details This function gets the minimally allowed zoom level of the map to show the overlay.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -940,7 +939,7 @@ int maps_view_object_overlay_set_max_zoom_level(maps_view_object_h overlay, int
  * @see maps_view_object_overlay_set_min_zoom_level()
  * @see maps_view_object_overlay_set_max_zoom_level()
  */
-int maps_view_object_overlay_get_max_zoom_level(const maps_view_object_h overlay, int *zoom);
+int maps_view_object_overlay_get_max_zoom_level(const maps_view_object_h overlay, int *zoom) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 7e13786..8aab5c1 100644 (file)
@@ -20,7 +20,6 @@
 #include <maps_view_object.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_VIEW_MODULE
  * @defgroup CAPI_MAPS_VIEW_OBJECT_MODULE View Object
  *
@@ -43,7 +42,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumerations of operation types over the map view object
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -56,7 +55,7 @@ typedef enum _maps_view_object_operation_e {
 } maps_view_object_operation_e;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the marker screen size.
  * @details This function sets the marker screen size.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -72,7 +71,7 @@ typedef enum _maps_view_object_operation_e {
  * @see maps_view_object_marker_get_size()
  * @see maps_view_object_marker_resize()
  */
-int maps_view_object_marker_set_size(const maps_view_object_h marker, int width, int height);
+int maps_view_object_marker_set_size(const maps_view_object_h marker, int width, int height) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 6c92ddf..aa505f0 100644 (file)
@@ -20,7 +20,6 @@
 #include <maps_view.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_VIEW_MODULE
  * @defgroup CAPI_MAPS_PLUGIN_VIEW_MODULE View
  *
@@ -37,7 +36,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumerations of color space types
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -47,7 +46,7 @@ typedef enum _maps_view_colorspace_type_e {
 } maps_view_colorspace_type_e;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Zooms the map on the view.
  * @details This function zooms the map on the View with real value of zoom
  * factor.
@@ -76,10 +75,10 @@ typedef enum _maps_view_colorspace_type_e {
  * @see maps_view_set_event_cb()
  * @see maps_view_create()
 */
-int maps_view_set_zoom_factor(maps_view_h view, double zoom_factor);
+int maps_view_set_zoom_factor(maps_view_h view, double zoom_factor) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the zoom factor.
  * @details This function gets the current zoom factor of View.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
@@ -101,10 +100,10 @@ int maps_view_set_zoom_factor(maps_view_h view, double zoom_factor);
  * @see maps_view_set_event_cb()
  * @see maps_view_create()
  */
-int maps_view_get_zoom_factor(const maps_view_h view, double *zoom_factor);
+int maps_view_get_zoom_factor(const maps_view_h view, double *zoom_factor) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Get the view handle of maps plugin.
  * @details This function gets the view handle of maps plugin.
  *
@@ -119,10 +118,10 @@ int maps_view_get_zoom_factor(const maps_view_h view, double *zoom_factor);
  *
  * @see maps_view_create()
  */
-int maps_view_get_maps_plugin_view_handle(maps_view_h view, void **maps_plugin_view_handle);
+int maps_view_get_maps_plugin_view_handle(maps_view_h view, void **maps_plugin_view_handle) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Set the view handle of maps plugin.
  * @details This function sets the view handle of maps plugin.
  *
@@ -137,10 +136,10 @@ int maps_view_get_maps_plugin_view_handle(maps_view_h view, void **maps_plugin_v
  *
  * @see maps_view_create()
  */
-int maps_view_set_maps_plugin_view_handle(maps_view_h view, void *maps_plugin_view_handle);
+int maps_view_set_maps_plugin_view_handle(maps_view_h view, void *maps_plugin_view_handle) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Gets the scale factor of View.
  * @details This function gets the current scale factor of View.
  * @since_tizen 4.0
@@ -158,10 +157,10 @@ int maps_view_set_maps_plugin_view_handle(maps_view_h view, void *maps_plugin_vi
  * @see maps_view_set_scale_factor()
  * @see maps_view_create()
  */
-int maps_view_get_scale_factor(maps_view_h view, double *scale_factor);
+int maps_view_get_scale_factor(maps_view_h view, double *scale_factor) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Sets the scale factor of View.
  * @details This function sets the current scale factor of View.
  * @remarks View is resizable based on this scale factor.
@@ -179,7 +178,7 @@ int maps_view_get_scale_factor(maps_view_h view, double *scale_factor);
  * @see maps_view_get_scale_factor()
  * @see maps_view_create()
  */
-int maps_view_set_scale_factor(maps_view_h view, double scale_factor);
+int maps_view_set_scale_factor(maps_view_h view, double scale_factor) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index bffe8f4..2eb81da 100644 (file)
@@ -23,7 +23,6 @@
 
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup CAPI_MAPS_VIEW_MODULE
  * @defgroup CAPI_MAPS_VIEW_SNAPSHOT_MODULE Snapshot
  * @file maps_view_snapshot.h
@@ -40,7 +39,7 @@ extern "C" {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Enumeration for snapshot file format type.
  * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
  */
@@ -51,7 +50,7 @@ typedef enum _maps_view_snapshot_format_type_e {
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Captures a snapshot of the Map View.\n
  *        The request is synchronous.
  * @details This function retrieves an image of a map currently represented on the Map View.
@@ -79,7 +78,7 @@ typedef enum _maps_view_snapshot_format_type_e {
  * @see maps_view_create()
  * @see maps_service_create()
  */
-int maps_view_capture_snapshot(maps_view_h view, maps_view_snapshot_format_type_e type, int quality, const char *path);
+int maps_view_capture_snapshot(maps_view_h view, maps_view_snapshot_format_type_e type, int quality, const char *path) TIZEN_DEPRECATED_API;
 
 
 #ifdef __cplusplus
index 2af9e55..0bd73dc 100644 (file)
 #include <maps_types.h>
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief      Gets if privilege is consented
  */
-bool maps_condition_check_privilege(void);
+bool maps_condition_check_privilege(void) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief      Gets if maps feature is supported
  */
-bool maps_condition_check_maps_feature(void);
+bool maps_condition_check_maps_feature(void) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief      Gets if network.internet feature is supported
  * @remarks    If target is not a wearable gear, it returns true always.
  */
-bool maps_condition_check_internet_feature(void);
+bool maps_condition_check_internet_feature(void) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief      Gets if maps service is supported
  */
-bool maps_condition_check_service_supported(maps_service_h maps, maps_service_e service);
+bool maps_condition_check_service_supported(maps_service_h maps, maps_service_e service) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief      Gets if maps service data is supported
  */
-bool maps_condition_check_data_supported(maps_service_h maps, maps_service_data_e data);
+bool maps_condition_check_data_supported(maps_service_h maps, maps_service_data_e data) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief      Gets if maps service is supported
  */
-bool maps_condition_check_view_service_supported(maps_view_h maps, maps_service_e service);
+bool maps_condition_check_view_service_supported(maps_view_h maps, maps_service_e service) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief      Gets if maps service data is supported
  */
-bool maps_condition_check_view_data_supported(maps_view_h view, maps_service_data_e data);
+bool maps_condition_check_view_data_supported(maps_view_h view, maps_service_data_e data) TIZEN_DEPRECATED_API;
 
 #endif /* __MAPS_CONDITION_H__ */
index 300c235..e8248dd 100644 (file)
@@ -21,7 +21,6 @@
 #include <maps_extra_types.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup    CAPI_MAPS_PLACE_MODULE
  * @defgroup   CAPI_MAPS_PLACE_DATA_MODULE Place
  *
@@ -39,7 +38,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @internal
  * @brief      Checks if a place data feature is supported.
  * @details This function checks if a place data feature is supported.
@@ -57,10 +56,10 @@ extern "C" {
  * @see maps_place_create()
  */
 int _maps_place_is_data_supported(const maps_place_h place,
-                                 maps_service_data_e data, bool *supported);
+                                 maps_service_data_e data, bool *supported) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @internal
  * @brief      Sets the supported place data features.
  * @details This function sets the supported place data features.
@@ -77,7 +76,7 @@ int _maps_place_is_data_supported(const maps_place_h place,
  * @see maps_place_create()
  */
 int _maps_place_set_supported_data(maps_place_h place,
-                                  const maps_int_hashtable_h supported_data);
+                                  const maps_int_hashtable_h supported_data) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 3fd8dc3..e82a146 100644 (file)
@@ -21,7 +21,6 @@
 #include <maps_extra_types.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @file maps_route_private.h
  * @brief This file contains the functions related to Route information.
  *
@@ -36,7 +35,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @internal
  * @brief      Checks if a route data feature is supported.
  * @details This function checks if a route data feature is supported.
@@ -54,10 +53,10 @@ extern "C" {
  * @see maps_route_create()
  */
 int _maps_route_is_data_supported(const maps_route_h route,
-                                 maps_service_data_e data, bool *supported);
+                                 maps_service_data_e data, bool *supported) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @internal
  * @brief      Sets the supported route data features.
  * @details This function sets the supported route data features.
@@ -74,7 +73,7 @@ int _maps_route_is_data_supported(const maps_route_h route,
  * @see maps_route_create()
  */
 int _maps_route_set_supported_data(maps_route_h route,
-                                  const maps_int_hashtable_h supported_data);
+                                  const maps_int_hashtable_h supported_data) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 33fbf68..78264aa 100644 (file)
@@ -21,9 +21,8 @@
 #include <maps_extra_types.h>
 
 /**
- * @deprecated Deprecated since 7.5.
  * @ingroup    CAPI_MAPS_ROUTE_MODULE
- * @defgroup   CAPI_MAPS_ROUTE_SEGMENT_MODULE Segment
+ * @defgroup CAPI_MAPS_ROUTE_SEGMENT_MODULE Segment
  *
  * @file maps_route_segment_private.h
  * @brief This file contains the functions related to Route Segment information.
@@ -38,7 +37,7 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @internal
  * @brief      Checks if a segment data feature is supported.
  * @details This function checks if a segment data feature is supported.
@@ -57,10 +56,10 @@ extern "C" {
  */
 int _maps_route_segment_is_data_supported(const maps_route_segment_h segment,
                                          maps_service_data_e data,
-                                         bool *supported);
+                                         bool *supported) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @internal
  * @brief      Sets the supported segment data features.
  * @details This function sets the supported segment data features.
@@ -77,7 +76,7 @@ int _maps_route_segment_is_data_supported(const maps_route_segment_h segment,
  * @see maps_route_segment_create()
  */
 int _maps_route_segment_set_supported_data(maps_route_segment_h segment,
-                                          const maps_int_hashtable_h supported_data);
+                                          const maps_int_hashtable_h supported_data) TIZEN_DEPRECATED_API;
 
 #ifdef __cplusplus
 }
index 3a7d108..7e7f966 100755 (executable)
@@ -16,6 +16,7 @@
 #ifndef __MAPS_UTIL_H__
 #define __MAPS_UTIL_H__
 
+#include <tizen.h>
 #include <dlog.h>
 #include <glib.h>
 #include <new>
@@ -83,7 +84,7 @@
 #define _S(s) #s
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief      Copies one string to another and releases receiver if needed.
  * @details This function copies one string to another and releases receiver if
  * needed.
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  */
-int maps_set_string(const char *src, const int max_length, char **dst);
+int maps_set_string(const char *src, const int max_length, char **dst) TIZEN_DEPRECATED_API;
 
 /*
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief      Copies one string to another.
  * @details This function copies one string to another.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.2 @endif
@@ -111,10 +112,10 @@ int maps_set_string(const char *src, const int max_length, char **dst);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  */
-int maps_get_string(const char *src, const int max_length, char **dst);
+int maps_get_string(const char *src, const int max_length, char **dst) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief      Get the screen dpi of current device.
  * @details This function gets the screen dpi of current device.
  *
@@ -123,7 +124,7 @@ int maps_get_string(const char *src, const int max_length, char **dst);
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  */
-int maps_get_screen_dpi(int *dpi);
+int maps_get_screen_dpi(int *dpi) TIZEN_DEPRECATED_API;
 
 
 /* Prevent utility highlights defects in std::vector and std::string, so
@@ -225,6 +226,9 @@ public:
 };
 //LCOV_EXCL_STOP
 
+/**
+ * @deprecated Deprecated since 8.0.
+ */
 typedef enum {
        TIZEN_PROFILE_UNKNOWN = 0,
        TIZEN_PROFILE_MOBILE = 0x1,
@@ -234,4 +238,5 @@ typedef enum {
        TIZEN_PROFILE_COMMON = 0x10,
 } tizen_profile_t;
 extern tizen_profile_t _get_tizen_profile();
-#endif                         /* __MAPS_UTIL_H__ */
+#endif                         
+/* __MAPS_UTIL_H__ */