WIP split layouts, reading config, defining data layout.
[staging/windowmanager.git] / generate-binding-glue.py
index 82f71ae..7e003a5 100644 (file)
@@ -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('};', '')
@@ -127,12 +127,6 @@ API = {
                 ],
             },
             { 'name': 'list_drawing_names', },
-            {
-                'name': 'demo_activate_surface',
-                'args': [ { 'name': 'surfaceid', 'type': 'uint32_t', 'jtype': 'int' } ]
-            },
-
-            { 'name': 'demo_activate_all' },
 
             { 'name': 'debug_status', },
             { 'name': 'debug_layers', },