summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzheng_wenlong <wenlong_zheng@nexty-ele.com>2017-10-23 14:48:42 +0900
committerZheng Wenlong <wenlong_zheng@nexty-ele.com>2017-10-30 04:28:01 +0000
commit2dbbe0dbd2e5d5aa43a3f719ca2186b7c334d1d1 (patch)
treee585e17954b844458bbe23a744c15df5479bdeb1 /include
parenteabd10ffe2f9cb5c31262ad3152b037eb2286857 (diff)
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 <wenlong_zheng@nexty-ele.com>
Diffstat (limited to 'include')
-rw-r--r--include/libhomescreen.hpp4
1 files changed, 3 insertions, 1 deletions
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<std::string> 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);