X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-xreq.h;h=3376bb225070fb12138bbe338f7e9e663baefb74;hb=522569c5a9da8566f5213fa5b9b3abadf746331d;hp=3413703f2400972164c48871ca396b43896204d7;hpb=f05bc513bc0e0a977e6393e859cecbec77b420c6;p=src%2Fapp-framework-binder.git diff --git a/src/afb-xreq.h b/src/afb-xreq.h index 3413703f..3376bb22 100644 --- a/src/afb-xreq.h +++ b/src/afb-xreq.h @@ -52,6 +52,8 @@ struct afb_xreq const struct afb_xreq_query_itf *queryitf; int refcount; /**< current ref count */ int replied; /**< is replied? */ + int hookflags; /**< flags for hooking */ + int hookindex; /**< index for hooking */ struct afb_evt_listener *listener; }; @@ -66,5 +68,6 @@ extern int afb_xreq_subscribe(struct afb_xreq *xreq, struct afb_event event); extern int afb_xreq_unsubscribe(struct afb_xreq *xreq, struct afb_event event); extern void afb_xreq_subcall(struct afb_xreq *xreq, const char *api, const char *verb, struct json_object *args, void (*callback)(void*, int, struct json_object*), void *cb_closure); +extern void afb_xreq_begin(struct afb_xreq *xreq); extern void afb_xreq_call(struct afb_xreq *xreq, int sessionflags, void (*callback)(struct afb_req req));