diff options
author | wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com> | 2018-10-22 16:09:07 +0800 |
---|---|---|
committer | wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com> | 2018-10-23 10:18:57 +0800 |
commit | 789ecb879cc529400b290eb9750fd1f9298fc690 (patch) | |
tree | 712c3ae682f1f9e2522dc312fa7fb437fdaa1c74 /src/hs-clientmanager.h | |
parent | ea459cc8988c3e664c3f9d56d3a9929775d8b57b (diff) |
Migration to binding V3
migration homescreen-service from v2 to v3
Change-Id: I5e6d42c3dff528e46d0ca407e09eb1d05bacea80
Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
Diffstat (limited to 'src/hs-clientmanager.h')
-rw-r--r-- | src/hs-clientmanager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hs-clientmanager.h b/src/hs-clientmanager.h index cb49088..99c6c0b 100644 --- a/src/hs-clientmanager.h +++ b/src/hs-clientmanager.h @@ -47,13 +47,13 @@ public: static HS_ClientManager* instance(void); int init(void); HS_Client* find(std::string appid); - HS_Client* getClient(afb_req req, std::string appid); + HS_Client* getClient(afb_req_t req, std::string appid); std::vector<HS_Client*> getAllClient(void); void removeClientCtxt(void *data); private: - HS_ClientCtxt* createClientCtxt(afb_req req, std::string appid); - HS_Client* addClient(afb_req req, std::string appid); + HS_ClientCtxt* createClientCtxt(afb_req_t req, std::string appid); + HS_Client* addClient(afb_req_t req, std::string appid); void removeClient(std::string appid); private: |