diff options
Diffstat (limited to 'include/app_manager.h')
-rwxr-xr-x | include/app_manager.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/app_manager.h b/include/app_manager.h index 4f786f8..8eddeeb 100755 --- a/include/app_manager.h +++ b/include/app_manager.h @@ -95,8 +95,6 @@ typedef bool (*app_manager_app_info_cb) (app_info_h app_info, void *user_data); * @internal * @brief Registers a callback function to be invoked when the applications get launched or terminated. * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif - * @privlevel public - * @privilege %http://tizen.org/privilege/packagemanager.info * @param[in] callback The callback function to register * @param[in] user_data The user data to be passed to the callback function * @return @c 0 on success, @@ -104,7 +102,6 @@ typedef bool (*app_manager_app_info_cb) (app_info_h app_info, void *user_data); * @retval #APP_MANAGER_ERROR_NONE Successful * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter * @retval #APP_MANAGER_ERROR_OUT_OF_MEMORY Out of memory - * @retval #APP_MANAGER_ERROR_PERMISSION_DENIED Permission denied * @post It will invoke app_manager_app_context_event_cb() when the application is launched or terminated. * @see app_manager_unset_app_context_event_cb() * @see app_manager_app_context_event_cb() @@ -123,15 +120,12 @@ void app_manager_unset_app_context_event_cb(void); /** * @brief Retrieves all application contexts of running applications. * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif - * @privlevel public - * @privilege %http://tizen.org/privilege/packagemanager.info * @param[in] callback The callback function to invoke * @param[in] user_data The user data to be passed to the callback function * @return @c 0 on success, * otherwise a negative error value * @retval #APP_MANAGER_ERROR_NONE Successful * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter - * @retval #APP_MANAGER_ERROR_PERMISSION_DENIED Permission denied * @post This function invokes app_manager_app_context_cb() for each application context. * @see app_manager_app_context_cb() */ @@ -140,8 +134,6 @@ int app_manager_foreach_app_context(app_manager_app_context_cb callback, void *u /** * @brief Gets the application context for the given ID of the application. * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif - * @privlevel public - * @privilege %http://tizen.org/privilege/packagemanager.info * @remarks This function returns #APP_MANAGER_ERROR_NO_SUCH_APP if the application with the given application ID is not running. \n * You must release @a app_context using app_context_destroy(). * @param[in] app_id The ID of the application @@ -152,15 +144,12 @@ int app_manager_foreach_app_context(app_manager_app_context_cb callback, void *u * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter * @retval #APP_MANAGER_ERROR_OUT_OF_MEMORY Out of memory * @retval #APP_MANAGER_ERROR_NO_SUCH_APP No such application - * @retval #APP_MANAGER_ERROR_PERMISSION_DENIED Permission denied */ int app_manager_get_app_context(const char *app_id, app_context_h *app_context); /** * @brief Gets the ID of the application for the given process ID. * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif - * @privlevel public - * @privilege %http://tizen.org/privilege/packagemanager.info * @remarks This function returns #APP_MANAGER_ERROR_NO_SUCH_APP if the application with the given process ID is not valid. \n * You must release @a app_id using free(). * @param[in] pid The process ID of the application @@ -170,7 +159,6 @@ int app_manager_get_app_context(const char *app_id, app_context_h *app_context); * @retval #APP_MANAGER_ERROR_NONE Successful * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter * @retval #APP_MANAGER_ERROR_OUT_OF_MEMORY Out of memory - * @retval #APP_MANAGER_ERROR_PERMISSION_DENIED Permission denied */ int app_manager_get_app_id(pid_t pid, char **app_id); @@ -239,15 +227,12 @@ int app_manager_terminate_app(app_context_h app_context); /** * @brief Retrieves all installed applications information. * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif - * @privlevel public - * @privilege %http://tizen.org/privilege/packagemanager.info * @param[in] callback The callback function to invoke * @param[in] user_data The user data to be passed to the callback function * @return @c 0 on success, * otherwise a negative error value * @retval #APP_MANAGER_ERROR_NONE Successful * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter - * @retval #APP_MANAGER_ERROR_PERMISSION_DENIED Permission denied * @post This function invokes app_manager_app_info_cb() for each application information. * @see app_manager_app_info_cb() */ @@ -256,8 +241,6 @@ int app_manager_foreach_app_info(app_manager_app_info_cb callback, void *user_da /** * @brief Gets the application information for the given application ID. * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif - * @privlevel public - * @privilege %http://tizen.org/privilege/packagemanager.info * @remarks You must release @a app_info using app_info_destroy(). * @param[in] app_id The ID of the application * @param[out] app_info The application information for the given application ID @@ -267,7 +250,6 @@ int app_manager_foreach_app_info(app_manager_app_info_cb callback, void *user_da * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter * @retval #APP_MANAGER_ERROR_OUT_OF_MEMORY Out of memory * @retval #APP_MANAGER_ERROR_NO_SUCH_APP No such application - * @retval #APP_MANAGER_ERROR_PERMISSION_DENIED Permission denied */ int app_manager_get_app_info(const char *app_id, app_info_h *app_info); |