app/main: add send_event() to binding_api
[staging/windowmanager.git] / generate-binding-glue.py
index 66f55cf..a489b63 100644 (file)
@@ -87,6 +87,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);')
     for f in api['functions']:
         p('   result_type %(name)s(' % f + ', '.join(map(lambda x: '%(type)s %(name)s' % x, f.get('args', []))) + ');')
     p('};', '')