X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-evt.h;h=5ba6ce9be1e3bbc1bbf34882470f7c6367e322b3;hb=a2cf84ecde926adeebf09bc2c284401513d3fab3;hp=28a4eddde1baadb054f89447ac40bf1ed2cc981f;hpb=5011060f04181acbb18babcc2017a2f0b6cfb853;p=src%2Fapp-framework-binder.git diff --git a/src/afb-evt.h b/src/afb-evt.h index 28a4eddd..5ba6ce9b 100644 --- a/src/afb-evt.h +++ b/src/afb-evt.h @@ -43,27 +43,21 @@ extern struct afb_evtid *afb_evt_evtid_create(const char *fullname); extern struct afb_evtid *afb_evt_evtid_create2(const char *prefix, const char *name); extern struct afb_evtid *afb_evt_evtid_addref(struct afb_evtid *evtid); -extern struct afb_evtid *afb_evt_evtid_hooked_addref(struct afb_evtid *evtid); extern void afb_evt_evtid_unref(struct afb_evtid *evtid); -extern void afb_evt_evtid_hooked_unref(struct afb_evtid *evtid); extern const char *afb_evt_evtid_fullname(struct afb_evtid *evtid); extern int afb_evt_evtid_id(struct afb_evtid *evtid); extern const char *afb_evt_evtid_name(struct afb_evtid *evtid); -extern const char *afb_evt_evtid_hooked_name(struct afb_evtid *evtid); extern int afb_evt_evtid_push(struct afb_evtid *evtid, struct json_object *obj); -extern int afb_evt_evtid_hooked_push(struct afb_evtid *evtid, struct json_object *obj); extern int afb_evt_evtid_broadcast(struct afb_evtid *evtid, struct json_object *object); -extern int afb_evt_evtid_hooked_broadcast(struct afb_evtid *evtid, struct json_object *object); extern int afb_evt_watch_add_evtid(struct afb_evt_listener *listener, struct afb_evtid *evtid); extern int afb_evt_watch_sub_evtid(struct afb_evt_listener *listener, struct afb_evtid *evtid); -extern void afb_evt_update_hooks(); extern struct afb_event_x2 *afb_evt_event_x2_create(const char *fullname); @@ -83,3 +77,11 @@ extern struct afb_evtid *afb_evt_event_x2_to_evtid(struct afb_event_x2 *eventid) extern struct afb_event_x2 *afb_evt_event_x2_from_evtid(struct afb_evtid *evtid); extern struct afb_event_x1 afb_evt_event_from_evtid(struct afb_evtid *evtid); +#if WITH_AFB_HOOK +extern struct afb_evtid *afb_evt_evtid_hooked_addref(struct afb_evtid *evtid); +extern void afb_evt_evtid_hooked_unref(struct afb_evtid *evtid); +extern const char *afb_evt_evtid_hooked_name(struct afb_evtid *evtid); +extern int afb_evt_evtid_hooked_push(struct afb_evtid *evtid, struct json_object *obj); +extern int afb_evt_evtid_hooked_broadcast(struct afb_evtid *evtid, struct json_object *object); +extern void afb_evt_update_hooks(); +#endif \ No newline at end of file