Allow dynamic creation of APIs
[src/app-framework-binder.git] / include / afb / afb-daemon-common.h
index 1d576b9..b78f9af 100644 (file)
@@ -24,6 +24,7 @@ struct sd_event;
 struct sd_bus;
 struct afb_stored_req;
 struct afb_req;
+struct afb_dynapi;
 
 /*
  * Definition of the facilities provided by the daemon.
@@ -42,6 +43,8 @@ struct afb_daemon_itf
        void (*vverbose_v2)(void*closure, int level, const char *file, int line, const char * func, const char *fmt, va_list args);
        struct afb_req (*unstore_req)(void*closure, struct afb_stored_req *sreq);
        int (*require_api)(void*closure, const char *name, int initialized);
+       int (*rename_api)(void*closure, const char *name);
+       int (*new_api)(void *closure, const char *api, const char *info, int (*preinit)(void*, struct afb_dynapi *), void *preinit_closure);
 };
 
 /*