Change-Id: Icefa5af8a795d1eda6d6975aff74be481ca338d5
Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
#define APP_SELECTOR "org.tizen.app-selector"
+#define APPSVC_K_LAUNCH_RESULT_APP_STARTED "__K_LAUNCH_RESULT_APP_STARTED__"
+
/**
* @brief Return values in appsvc.
*/
*
*/
const char *appsvc_get_launch_mode(bundle *b);
+
+int aul_svc_subscribe_launch_result(bundle *b, const char *event);
#ifdef __cplusplus
}
#endif
return aul_app_group_clear_top();
}
+
+SLPAPI int aul_svc_subscribe_launch_result(bundle *b, const char *result)
+{
+ if (b == NULL) {
+ _E("bundle for aul_svc_subscribe_launch_result is NULL");
+ return APPSVC_RET_EINVAL;
+ }
+
+ return __set_bundle(b, result, "1");
+}