From 2dbbe0dbd2e5d5aa43a3f719ca2186b7c334d1d1 Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Mon, 23 Oct 2017 14:48:42 +0900 Subject: Use new OnScreenReply API in libhomescreen As homescreen-service added the OnScreenReply function, we can add the OnScreenReply to libhomescreen so applications can use this api easily. BUG-AGL: SPEC-985 Change-Id: I8038fea7471d1ae0777dcbff19e45c38fb6f614f Signed-off-by: zheng_wenlong --- include/libhomescreen.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/libhomescreen.hpp') diff --git a/include/libhomescreen.hpp b/include/libhomescreen.hpp index 9034dc8..0d3815d 100644 --- a/include/libhomescreen.hpp +++ b/include/libhomescreen.hpp @@ -42,7 +42,8 @@ public: enum EventType { Event_TapShortcut = 1, - Event_OnScreenMessage + Event_OnScreenMessage, + Event_OnScreenReply }; static const std::vector api_list; @@ -53,6 +54,7 @@ public: int tapShortcut(const char* application_name); int onScreenMessage(const char* display_message); + int onScreenReply(const char* reply_message); void set_event_handler(enum EventType et, handler_func f); -- cgit 1.2.3-korg