From: chanywa Date: Tue, 1 Nov 2016 02:22:38 +0000 (+0900) Subject: modified descriptions of plugin APIs X-Git-Tag: submit/tizen_3.0/20161111.094850^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F28%2F94728%2F2;p=platform%2Fcore%2Fapi%2Fmaps-service.git modified descriptions of plugin APIs Change-Id: I7a670d5df54cafcce24b2bd2b1b790b7334816e4 --- diff --git a/include/maps_view_plugin.h b/include/maps_view_plugin.h index 5826703..c6bf17f 100644 --- a/include/maps_view_plugin.h +++ b/include/maps_view_plugin.h @@ -104,35 +104,35 @@ int maps_view_get_zoom_factor(const maps_view_h view, double *zoom_factor); * @brief Get the view handle of maps plugin. * @details This function gets the view handle of maps plugin. * - * @param[in] hView The view handle + * @param[in] view The view handle * @param[in] maps_plugin_view_handle The view handle of maps plugin * @return 0 on success, otherwise a negative error value * @retval #MAPS_ERROR_NONE Successful * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported * - * @pre @a hView is created using maps_view_create(). + * @pre @a view is created using maps_view_create(). * * @see maps_view_create() */ -int maps_view_get_maps_plugin_view_handle(maps_view_h hView, void **maps_plugin_view_handle); +int maps_view_get_maps_plugin_view_handle(maps_view_h view, void **maps_plugin_view_handle); /** * @brief Set the view handle of maps plugin. * @details This function sets the view handle of maps plugin. * - * @param[in] hView The view handle + * @param[in] view The view handle * @param[in] maps_plugin_view_handle The view handle of maps plugin * @return 0 on success, otherwise a negative error value * @retval #MAPS_ERROR_NONE Successful * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported * - * @pre @a hView is created using maps_view_create(). + * @pre @a view is created using maps_view_create(). * * @see maps_view_create() */ -int maps_view_set_maps_plugin_view_handle(maps_view_h hView, void *maps_plugin_view_handle); +int maps_view_set_maps_plugin_view_handle(maps_view_h view, void *maps_plugin_view_handle); #ifdef __cplusplus }