X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-export.c;h=75fb1b17b8124fefc0ee6cb80d12b535311eb86b;hb=aab152c28e471cff7c35361a417e3d82850bbcc2;hp=dc9cbd96dda42c61cb3d3e0f301fb87907b4d2ae;hpb=770ca7e254bba07bb7d1ade4fa95afed7a7f7693;p=src%2Fapp-framework-binder.git diff --git a/src/afb-export.c b/src/afb-export.c index dc9cbd96..75fb1b17 100644 --- a/src/afb-export.c +++ b/src/afb-export.c @@ -74,7 +74,7 @@ struct afb_export /* hooking flags */ int hookditf; int hooksvc; - + /* session for service */ struct afb_session *session; @@ -792,7 +792,12 @@ void afb_export_set_apiset(struct afb_export *export, struct afb_apiset *apiset) export->apiset = afb_apiset_addref(apiset); afb_apiset_unref(prvset); } - + +struct afb_apiset *afb_export_get_apiset(struct afb_export *export) +{ + return export->apiset; +} + /* * Creates a new service */ @@ -826,7 +831,6 @@ int afb_export_is_started(const struct afb_export *export) struct afb_binding_v1 *afb_export_register_v1(struct afb_export *export, struct afb_binding_v1 *(*regfun)(const struct afb_binding_interface_v1*)) { return regfun(&export->export.v1); - } int afb_export_start_v1(struct afb_export *export, int (*start)(struct afb_service))