X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=include%2Fafb-plugin.h;h=2c9935e67ec6533f33667ed45310101de09892cf;hb=abbe8f79355cc7aa2ef906c626c1a43ea4762d88;hp=8ca72704f7d3ded5813795b57d1805a3488531c3;hpb=b8d4c81cc8175ce49c77d41e572a9f1a2e367cdc;p=src%2Fapp-framework-binder.git diff --git a/include/afb-plugin.h b/include/afb-plugin.h index 8ca72704..2c9935e6 100644 --- a/include/afb-plugin.h +++ b/include/afb-plugin.h @@ -15,6 +15,8 @@ * limitations under the License. */ +#pragma once + struct afb_req; /* Plugin Type */ @@ -54,12 +56,20 @@ struct AFB_plugin void (*freeCtxCB)(void*); // callback to free application context [null for standard free] }; -typedef enum AFB_pluginE AFB_pluginE; -typedef enum AFB_sessionE AFB_sessionE; -typedef void (*AFB_apiCB)(struct afb_req); -typedef void (*AFB_freeCtxCB)(void*); -typedef struct AFB_restapi AFB_restapi; -typedef struct AFB_plugin AFB_plugin; +/* config mode */ +enum AFB_Mode { + AFB_MODE_LOCAL = 0, + AFB_MODE_REMOTE, + AFB_MODE_GLOBAL +}; + +struct AFB_interface +{ + int verbosity; + enum AFB_Mode mode; + const struct afb_pollitf *pollitf; + void *pollclosure; +}; -extern const struct AFB_plugin *pluginRegister (); +extern const struct AFB_plugin *pluginRegister (const struct AFB_interface *interface);