X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-export.h;h=33b94914170043fb4f1e5d049f39552bef1b6122;hb=refs%2Fheads%2Fsandbox%2FDDTLK%2Fpakage;hp=be8adfd57d4d68c1780fa10a96853dc828cfceb0;hpb=bebb8fa967f3b71b609119b293d2869d56036586;p=src%2Fapp-framework-binder.git diff --git a/src/afb-export.h b/src/afb-export.h index be8adfd5..33b94914 100644 --- a/src/afb-export.h +++ b/src/afb-export.h @@ -30,6 +30,8 @@ struct afb_api_v3; struct afb_api_x3; struct afb_event_x2; +extern void afb_export_set_config(struct json_object *config); + extern struct afb_export *afb_export_create_none_for_path( struct afb_apiset *declare_set, struct afb_apiset *call_set, @@ -37,19 +39,21 @@ extern struct afb_export *afb_export_create_none_for_path( int (*creator)(void*, struct afb_api_x3*), void *closure); -extern struct afb_export *afb_export_create_v2( - struct afb_apiset *declare_set, +extern struct afb_export *afb_export_create_v2(struct afb_apiset *declare_set, struct afb_apiset *call_set, const char *apiname, const struct afb_binding_v2 *binding, struct afb_binding_data_v2 *data, int (*init)(), - void (*onevent)(const char*, struct json_object*)); + void (*onevent)(const char*, struct json_object*), + const char* path); extern struct afb_export *afb_export_create_v3(struct afb_apiset *declare_set, struct afb_apiset *call_set, const char *apiname, - struct afb_api_v3 *api); + struct afb_api_v3 *api, + struct afb_export* creator, + const char* path); extern struct afb_export *afb_export_addref(struct afb_export *export); extern void afb_export_unref(struct afb_export *export); @@ -116,12 +120,12 @@ extern struct afb_api_x3 *afb_export_to_api_x3(struct afb_export *export); struct afb_service_x1; struct afb_binding_interface_v1; -extern struct afb_export *afb_export_create_v1( - struct afb_apiset *declare_set, +extern struct afb_export *afb_export_create_v1(struct afb_apiset *declare_set, struct afb_apiset *call_set, const char *apiname, int (*init)(struct afb_service_x1), - void (*onevent)(const char*, struct json_object*)); + void (*onevent)(const char*, struct json_object*), + const char* path); extern struct afb_binding_v1 *afb_export_register_v1( struct afb_export *export,