aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb_binding_api.hpp
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2017-12-20 16:54:53 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2017-12-21 06:44:35 +0000
commita65ed04064a6930d072b2d7b73a76911f8672bb7 (patch)
treef48717c2c19830bc9702635cbb3e670f3e258f3b /src/afb_binding_api.hpp
parent72295a67230bceb2777fca41fda92098acc15fab (diff)
Clean up source codeeel_4.99.5eel/4.99.54.99.5
To reduce the files and redundant code, * Remove afb_binding_api.* files and generate-binding-glue.py. * Merge them into other source codes. Change-Id: Ib61350ee6a42d73efc3fa29fa0c4868145a88e2e Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/afb_binding_api.hpp')
-rw-r--r--src/afb_binding_api.hpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/afb_binding_api.hpp b/src/afb_binding_api.hpp
deleted file mode 100644
index ba6b1d1..0000000
--- a/src/afb_binding_api.hpp
+++ /dev/null
@@ -1,29 +0,0 @@
-#include "result.hpp"
-
-#include <json-c/json.h>
-
-namespace wm {
-
-struct App;
-
-struct binding_api {
- typedef wm::result<json_object *> result_type;
- struct wm::App *app;
- void send_event(char const *evname, char const *label);
- void send_event(char const *evname, char const *label, char const *area);
- result_type requestsurface(char const* drawing_name);
- result_type requestsurfacexdg(char const* drawing_name, char const* ivi_id);
- result_type activatesurface(char const* drawing_name, char const* drawing_area);
- result_type deactivatesurface(char const* drawing_name);
- result_type enddraw(char const* drawing_name);
- result_type wm_subscribe();
- result_type list_drawing_names();
- result_type ping();
- result_type debug_status();
- result_type debug_layers();
- result_type debug_surfaces();
- result_type debug_terminate();
-};
-
-} // namespace wm
-