X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Futils-jbus.h;h=3d712826447beb12e04c2ae2611cfd56ecf9426a;hb=c0fc18e47e49dd4e3cc2f09452a19297dad63f9c;hp=f1ec78fd99f2dbbec1025296a7bd4a63a4af4631;hpb=f145b390adea074c40470b677d8721877520150a;p=src%2Fapp-framework-main.git diff --git a/src/utils-jbus.h b/src/utils-jbus.h index f1ec78f..3d71282 100644 --- a/src/utils-jbus.h +++ b/src/utils-jbus.h @@ -1,6 +1,8 @@ /* Copyright 2015 IoT.bzh + author: José Bollo + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -18,14 +20,16 @@ struct jreq; struct jbus; +extern struct jbus *create_jbus(int session, const char *path); +extern void jbus_addref(struct jbus *jbus); +extern void jbus_unref(struct jbus *jbus); -struct jbus *create_jbus(int session, const char *path); -void jbus_addref(struct jbus *jbus); -void jbus_unref(struct jbus *jbus); - -int jbus_reply(struct jreq *jreq, struct json_object *reply); -int jbus_add_service(struct jbus *jbus, const char *method, void (*oncall)(struct jreq *, struct json_object *)); +extern int jbus_replyj(struct jreq *jreq, const char *reply); +extern int jbus_reply(struct jreq *jreq, struct json_object *reply); +extern int jbus_add_service(struct jbus *jbus, const char *method, void (*oncall)(struct jreq *, struct json_object *)); +extern int jbus_start_serving(struct jbus *jbus); +extern int jbus_read_write_dispatch(struct jbus *jbus, int toms); -int jbus_callj(struct jbus *jbus, const char *method, const char *query, void (*onresp)(int, struct json_object *, void *), void *data); -int jbus_call(struct jbus *jbus, const char *method, struct json_object *query, void (*onresp)(int, struct json_object *response, void *), void *data); +extern int jbus_callj(struct jbus *jbus, const char *method, const char *query, void (*onresp)(int, struct json_object *, void *), void *data); +extern int jbus_call(struct jbus *jbus, const char *method, struct json_object *query, void (*onresp)(int, struct json_object *response, void *), void *data);