aboutsummaryrefslogtreecommitdiffstats
path: root/src/hs-client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hs-client.cpp')
-rw-r--r--src/hs-client.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/hs-client.cpp b/src/hs-client.cpp
index 807b068..9fc9b61 100644
--- a/src/hs-client.cpp
+++ b/src/hs-client.cpp
@@ -30,10 +30,10 @@ static const char _type[] = "type";
* None
*
*/
-HS_Client::HS_Client(struct afb_req request, std::string id) : my_id(id)
+HS_Client::HS_Client(afb_req_t request, std::string id) : my_id(id)
{
HMI_NOTICE("homescreen-service","called.");
- my_event = afb_daemon_make_event(id.c_str());
+ my_event = afb_api_make_event(request->api, id.c_str());
}
/**
@@ -84,7 +84,7 @@ int HS_Client::tap_shortcut(const char* appname)
* result
*
*/
-int HS_Client::on_screen_message(struct afb_req request, const char* message)
+int HS_Client::on_screen_message(afb_req_t request, const char* message)
{
if(!checkEvent(__FUNCTION__))
return 0;
@@ -106,7 +106,7 @@ int HS_Client::on_screen_message(struct afb_req request, const char* message)
* result
*
*/
-int HS_Client::on_screen_reply(struct afb_req request, const char* message)
+int HS_Client::on_screen_reply(afb_req_t request, const char* message)
{
if(!checkEvent(__FUNCTION__))
return 0;
@@ -128,7 +128,7 @@ int HS_Client::on_screen_reply(struct afb_req request, const char* message)
* result
*
*/
-int HS_Client::subscribe(struct afb_req request, const char* event)
+int HS_Client::subscribe(afb_req_t request, const char* event)
{
int ret = 0;
auto ip = event_list.find(std::string(event));
@@ -149,7 +149,7 @@ int HS_Client::subscribe(struct afb_req request, const char* event)
* result
*
*/
-int HS_Client::unsubscribe(struct afb_req request, const char* event)
+int HS_Client::unsubscribe(afb_req_t request, const char* event)
{
int ret = 0;
event_list.erase(std::string(event));