From: Junghoon Park Date: Thu, 10 Dec 2015 00:17:15 +0000 (+0900) Subject: Add description for aul_svc_set_loader_id() X-Git-Tag: accepted/tizen/mobile/20151210.225932^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8020ab341767103939c8b8cc38d487b605cd8429;p=platform%2Fcore%2Fappfw%2Faul-1.git Add description for aul_svc_set_loader_id() Change-Id: I4c8aa232b7209aaa2332f3b1aecd2a3493b2a9b8 Signed-off-by: Junghoon Park --- diff --git a/include/aul_svc.h b/include/aul_svc.h index debb242..5440c96 100755 --- a/include/aul_svc.h +++ b/include/aul_svc.h @@ -88,7 +88,6 @@ extern "C" { /** AUL_SVC DATA TYPE*/ #define AUL_SVC_DATA_RETURN_RESULT "http://tizen.org/appcontrol/data/return_result" - /** AUL SVC internal private key */ #define AUL_SVC_K_URI_R_INFO "__AUL_SVC_URI_R_INFO__" @@ -112,6 +111,7 @@ extern "C" { #define AUL_SVC_K_SHIFT_WINDOW "__K_SHIFT_WINDOW" #define AUL_SVC_K_RECYCLE "__K_RECYCLE" +#define PAD_LOADER_ID_DIRECT 1 /** * @brief Return values in appsvc. @@ -1089,8 +1089,16 @@ int aul_svc_request_transient_app(bundle *b, int callee_wid, int aul_svc_subscribe_launch_result(bundle *b, const char *event); -/* - * This API is only for Appfw internally. +/** + * @par Description: + * This function sets loader ID into bundle. + * + * @param[in] b Bundle object + * @param[in] loader_id Loader ID from aul_add_loader() or PAD_LOADER_ID_DIRECT to launch apps without loader + * + * @return 0 if success, negative value(<0) if fail + * @see aul_add_loader, aul_remove_loader + * @remarks This API is only for Appfw internally. */ int aul_svc_set_loader_id(bundle *b, int loader_id);