diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-04 17:54:09 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-04 17:54:09 +0200 |
commit | 1575879e922f6c49107ae13d769a057142acc66d (patch) | |
tree | e519f1675ce47f3626125861796886a45eda9aff /generate-binding-glue.py | |
parent | 9a6402d09978fe418a017085b41a921894f802b9 (diff) |
App/API: fix event emission methods
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'generate-binding-glue.py')
-rw-r--r-- | generate-binding-glue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generate-binding-glue.py b/generate-binding-glue.py index 82f71ae..3fd0828 100644 --- a/generate-binding-glue.py +++ b/generate-binding-glue.py @@ -88,7 +88,7 @@ def emit_afb_api(api): p('struct binding_api {') p(' typedef wm::result<json_object *> result_type;') p(' struct wm::App *app;') - p(' void send_event(char const *evname, json_object *payload);') + p(' void send_event(char const *evname, char const *label);') for f in api['functions']: p(' result_type %(name)s(' % f + ', '.join(map(lambda x: '%(type)s %(name)s' % x, f.get('args', []))) + ');') p('};', '') |