* @param[in] execution_id The ID of the action execution.
* @param[in] json_result The result of the action execution.
* @param[in] user_data The user data passed from the callback registration function.
- * @return @c true to continue with the next iteration of the loop,
- * otherwise @c false to break out of the loop.
* @see tizen_action_execute_action()
*/
-typedef bool (*action_result_cb)(int execution_id, const char *json_result, void *user_data);
+typedef void (*action_result_cb)(int execution_id, const char *json_result, void *user_data);
/**
* @brief Creates a action client handle.