X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-context.h;h=27a262ac4f05193a2bf63aaf1959eb6d1b6bd653;hb=fca2e14e1d57d7b89d1a6de07075cc0e6e157ca7;hp=2f5ecc10608d3e4bfc081fa39a9e748df8058d35;hpb=c7e9786d408f13d8f8f43c6b68da916bbb1ed5f3;p=src%2Fapp-framework-binder.git diff --git a/src/afb-context.h b/src/afb-context.h index 2f5ecc10..27a262ac 100644 --- a/src/afb-context.h +++ b/src/afb-context.h @@ -32,6 +32,10 @@ struct afb_context unsigned refreshed: 1; unsigned closing: 1; unsigned closed: 1; + unsigned loa_in: 3; + unsigned loa_out: 3; + unsigned loa_changing: 1; + unsigned loa_changed: 1; }; }; int api_index; @@ -49,5 +53,6 @@ extern void afb_context_set(struct afb_context *context, void *value, void (*fre extern void afb_context_close(struct afb_context *context); extern void afb_context_refresh(struct afb_context *context); extern int afb_context_check(struct afb_context *context); -extern int afb_context_create(struct afb_context *context); +extern int afb_context_check_loa(struct afb_context *context, unsigned loa); +extern int afb_context_change_loa(struct afb_context *context, unsigned loa);