diff options
author | fulup <fulup.arfoll@iot.bzh> | 2017-07-25 11:37:10 +0200 |
---|---|---|
committer | fulup <fulup.arfoll@iot.bzh> | 2017-07-25 11:37:10 +0200 |
commit | 593ed6dc72274f86046aae3dc6b264c568241917 (patch) | |
tree | 32615a58bedbc0b2fcdf05db4a66d15ceafd763a /HAL-afb/HAL-interface/hal-interface.h | |
parent | a7a6ae4be87ee9178905ab784d84a4c0a8303f9b (diff) |
Initial version of HAL with Set/Get operation
Diffstat (limited to 'HAL-afb/HAL-interface/hal-interface.h')
-rw-r--r-- | HAL-afb/HAL-interface/hal-interface.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/HAL-afb/HAL-interface/hal-interface.h b/HAL-afb/HAL-interface/hal-interface.h index afe480e..c31c145 100644 --- a/HAL-afb/HAL-interface/hal-interface.h +++ b/HAL-afb/HAL-interface/hal-interface.h @@ -23,6 +23,11 @@ #include "audio-interface.h" +typedef enum { + ACTION_SET, + ACTION_GET +} ActionSetGetT; + typedef struct { int min; int max; @@ -69,7 +74,7 @@ PUBLIC void halServiceEvent(const char *evtname, struct json_object *object); PUBLIC int halServiceInit (const char *apiPrefix, alsaHalSndCardT *alsaHalSndCard); // hal-volmap.c -PUBLIC struct json_object *GetNormaliseVolume(const alsaHalCtlMapT *halCtls, struct json_object *valuesJ); +PUBLIC struct json_object *SetGetNormaliseVolumes(ActionSetGetT action, const alsaHalCtlMapT *halCtls, struct json_object *valuesJ); #endif /* SHAREHALLIB_H */ |