diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2008-09-03 17:00:48 +0300 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2008-09-03 17:00:48 +0300 |
commit | 2bda864bfb74be61f189d4c0855cf1cd6cd51327 (patch) | |
tree | f5c3544956e679dcc6927faadd5003a964cd5b32 /audio/telephony.h | |
parent | 86340d34bb4786f6a657e74936e2639e6d041504 (diff) |
Preliminary support for indicators
Diffstat (limited to 'audio/telephony.h')
-rw-r--r-- | audio/telephony.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/audio/telephony.h b/audio/telephony.h index 67887ca9..2fca71ab 100644 --- a/audio/telephony.h +++ b/audio/telephony.h @@ -24,6 +24,12 @@ #include <stdint.h> +struct indicator { + const char *desc; + const char *range; + int val; +}; + int telephony_init(void); void telephony_exit(void); @@ -31,3 +37,5 @@ void telephony_exit(void); int telephony_features_req(void); void telephony_features_rsp(uint32_t features); + +struct indicator *telephony_indicators_req(void); |