diff options
Diffstat (limited to 'include/libhomescreen.hpp')
-rw-r--r-- | include/libhomescreen.hpp | 4 |
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); |