diff options
Diffstat (limited to 'audio/telephony.h')
-rw-r--r-- | audio/telephony.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/audio/telephony.h b/audio/telephony.h index 398f98df..60b1d423 100644 --- a/audio/telephony.h +++ b/audio/telephony.h @@ -52,6 +52,8 @@ int telephony_response_and_hold_ind(int rh); int telephony_last_dialed_number(void); +int telephony_terminate_call(void); + int telephony_ready(uint32_t features, struct indicator *indicators, int rh); /* Helper function for quick indicator updates */ @@ -77,5 +79,18 @@ static inline int telephony_update_indicator(struct indicator *indicators, return telephony_event_ind(i); } +static inline int telephony_get_indicator(struct indicator *indicators, + const char *desc) +{ + int i; + + for (i = 0; indicators[i].desc != NULL; i++) { + if (g_str_equal(indicators[i].desc, desc)) + return indicators[i].val; + } + + return -ENOENT; +} + int telephony_init(void); void telephony_exit(void); |