X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-context.h;h=f1af36221ee1e23e823e372e6f6f78af559a491a;hb=170aef20bc3a59d5139c2eff8794d9ba4c83a2e5;hp=f140238265525255f8ab35f1012066e4e3120a13;hpb=ab4955d02a15b13d5dcfdfe8de1529db6538ac27;p=src%2Fapp-framework-binder.git diff --git a/src/afb-context.h b/src/afb-context.h index f1402382..f1af3622 100644 --- a/src/afb-context.h +++ b/src/afb-context.h @@ -22,6 +22,8 @@ struct afb_session; struct afb_context { struct afb_session *session; + void *api_key; + struct afb_context *super; union { unsigned flags; struct { @@ -32,14 +34,8 @@ 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; }; }; - void *api_key; - struct afb_context *super; }; extern void afb_context_init(struct afb_context *context, struct afb_session *session, const char *token); @@ -48,9 +44,11 @@ extern int afb_context_connect(struct afb_context *context, const char *uuid, co extern void afb_context_disconnect(struct afb_context *context); extern const char *afb_context_sent_token(struct afb_context *context); extern const char *afb_context_sent_uuid(struct afb_context *context); +extern const char *afb_context_uuid(struct afb_context *context); extern void *afb_context_get(struct afb_context *context); -extern void afb_context_set(struct afb_context *context, void *value, void (*free_value)(void*)); +extern int afb_context_set(struct afb_context *context, void *value, void (*free_value)(void*)); +extern void *afb_context_data(struct afb_context *context, void *(*make_value)(void), void (*free_value)(void*)); extern void afb_context_close(struct afb_context *context); extern void afb_context_refresh(struct afb_context *context);