X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=include%2Fafb%2Fafb-req-itf.h;h=dcbbb8a768603a0ddf1f1190b3c1a6bea0ad02d5;hb=9ee5ae1883c58527f9cb63b7bafeb2f1d59e37ec;hp=8c18a83177e6ed75040d26772fa3bf76070b3a91;hpb=524ce4c40da3b25630dffdd80c5aca99364a3569;p=src%2Fapp-framework-binder.git diff --git a/include/afb/afb-req-itf.h b/include/afb/afb-req-itf.h index 8c18a831..dcbbb8a7 100644 --- a/include/afb/afb-req-itf.h +++ b/include/afb/afb-req-itf.h @@ -27,7 +27,8 @@ struct json_object; /* * Describes an argument (or parameter) of a request */ -struct afb_arg { +struct afb_arg +{ const char *name; /* name of the argument or NULL if invalid */ const char *value; /* string representation of the value of the argument */ /* original filename of the argument if path != NULL */ @@ -41,7 +42,8 @@ struct afb_arg { * Don't use this structure directly. * Use the helper functions documented below. */ -struct afb_req_itf { +struct afb_req_itf +{ /* CAUTION: respect the order, add at the end */ struct json_object *(*json)(void *closure); @@ -74,7 +76,8 @@ struct afb_req_itf { /* * Describes the request by bindings from afb-daemon */ -struct afb_req { +struct afb_req +{ const struct afb_req_itf *itf; /* the interface to use */ void *closure; /* the closure argument for functions of 'itf' */ };