diff options
author | Jaekyu Park <jk7744.park@samsung.com> | 2016-05-27 17:13:54 +0900 |
---|---|---|
committer | Jaekyu Park <jk7744.park@samsung.com> | 2016-05-27 17:13:54 +0900 |
commit | 8f9cd01f865d19dc4fb1b0520c5f60ba97969b41 (patch) | |
tree | 7964a46c9af24c053c9a409a368b2453e5d543c7 /include/app_manager.h | |
parent | 7b56d7434eb4ec6515a5f4cbaf2b6223d4683fb8 (diff) | |
download | app-manager-accepted/tizen_2.3.1_mobile.tar.gz app-manager-accepted/tizen_2.3.1_mobile.tar.bz2 app-manager-accepted/tizen_2.3.1_mobile.zip |
Tizen 2.4 SDK Rev6 Releasesubmit/tizen_2.3.1/20160530.021310accepted/tizen/2.3.1/wearable/20160530.053630accepted/tizen/2.3.1/mobile/20160530.053628tizen_2.3.1accepted/tizen_2.3.1_wearableaccepted/tizen_2.3.1_mobile
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); |