/** AUL internal private key */
#define AUL_K_CHILD_APPID "__AUL_CHILD_APPID__"
/** AUL internal private key */
-#define AUL_K_WIDGET_FAULT "__AUL_WIDGET_FAULT__"
-/** AUL internal private key */
#define AUL_K_FAST_LAUNCH "__AUL_FAST_LAUNCH__"
+/** AUL internal private key */
+#define AUL_K_IS_FAULT "__AUL_IS_FAULT__"
/**
/**
* This API is only for Appfw internally.
*/
-int aul_widget_notify_exit(void);
+int aul_notify_exit(void);
#ifdef __cplusplus
}
APP_WINDOW_DETACH = 91,
APP_START_RES_ASYNC = 92,
- WIDGET_NOTIFY_EXIT = 93,
+ APP_NOTIFY_EXIT = 93,
APP_CMD_MAX
};
return AUL_R_OK;
}
+
+API int aul_notify_exit(void)
+{
+ return aul_sock_send_raw(AUL_UTIL_PID, getuid(),
+ APP_NOTIFY_EXIT, NULL, 0, AUL_SOCK_NOREPLY);
+}
\ No newline at end of file
return ret;
}
-
-API int aul_widget_notify_exit(void)
-{
- return aul_sock_send_raw(AUL_UTIL_PID, getuid(),
- WIDGET_NOTIFY_EXIT, NULL, 0, AUL_SOCK_NOREPLY);
-}