From 12f39580ba24e065d405f14b942a5e68b56df987 Mon Sep 17 00:00:00 2001 From: chanywa Date: Tue, 1 Nov 2016 11:22:38 +0900 Subject: [PATCH] modified descriptions of plugin APIs Change-Id: I7a670d5df54cafcce24b2bd2b1b790b7334816e4 --- include/maps_view_plugin.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 } -- 2.34.1