diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-13 13:59:23 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-14 14:04:51 +0200 |
commit | f09cbfb256460bc934f1df1cef2939a35e032bab (patch) | |
tree | 8f5bcf849c53f52ed2cea0370fa3a60251a9ab91 /client-lib | |
parent | f7f02a664fc0438f00e6bd09797a3bf4184c123f (diff) |
binding/afbclient: use the correct binding names
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'client-lib')
-rw-r--r-- | client-lib/AFBClient.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client-lib/AFBClient.cpp b/client-lib/AFBClient.cpp index dc1c523..e0c4efa 100644 --- a/client-lib/AFBClient.cpp +++ b/client-lib/AFBClient.cpp @@ -239,7 +239,7 @@ int AFBClient::Impl::requestSurface(const char *label) { int rc = -1; /* send the request */ int rc2 = - this->api_call("request_surface", j, [&rc](bool ok, json_object *j) { + this->api_call("RequestSurface", j, [&rc](bool ok, json_object *j) { if (ok) { int id = json_object_get_int(json_object_object_get(j, "response")); @@ -275,7 +275,7 @@ int AFBClient::Impl::requestSurface(const char *label) { int AFBClient::Impl::activateSurface(const char *label) { TRACE(); json_object *j = drawing_name_json_argument(label); - return this->api_call("activate_surface", j, [](bool ok, json_object *j) { + return this->api_call("ActivateSurface", j, [](bool ok, json_object *j) { if (!ok) { fprintf(stderr, "API Call activate_surface() failed: %s\n", j != nullptr ? json_object_to_json_string_ext( @@ -288,7 +288,7 @@ int AFBClient::Impl::activateSurface(const char *label) { int AFBClient::Impl::deactivateSurface(const char *label) { TRACE(); json_object *j = drawing_name_json_argument(label); - return this->api_call("deactivate_surface", j, [](bool ok, json_object *j) { + return this->api_call("DeactivateSurface", j, [](bool ok, json_object *j) { if (!ok) { fprintf(stderr, "API Call deactivate_surface() failed: %s\n", j != nullptr ? json_object_to_json_string_ext( @@ -301,7 +301,7 @@ int AFBClient::Impl::deactivateSurface(const char *label) { int AFBClient::Impl::endDraw(const char *label) { TRACE(); json_object *j = drawing_name_json_argument(label); - return this->api_call("enddraw", j, [](bool ok, json_object *j) { + return this->api_call("EndDraw", j, [](bool ok, json_object *j) { if (!ok) { fprintf(stderr, "API Call endDraw() failed: %s\n", j != nullptr ? json_object_to_json_string_ext( |