diff options
Diffstat (limited to 'include/call-volume.h')
-rw-r--r-- | include/call-volume.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/call-volume.h b/include/call-volume.h index d8af0082..b13d46fc 100644 --- a/include/call-volume.h +++ b/include/call-volume.h @@ -45,12 +45,15 @@ struct ofono_call_volume_driver { void (*microphone_volume)(struct ofono_call_volume *cv, unsigned char percent, ofono_call_volume_cb_t cb, void *data); + void (*mute)(struct ofono_call_volume *cv, int muted, + ofono_call_volume_cb_t cb, void *data); }; void ofono_call_volume_set_speaker_volume(struct ofono_call_volume *cv, unsigned char percent); void ofono_call_volume_set_microphone_volume(struct ofono_call_volume *cv, unsigned char percent); +void ofono_call_volume_set_muted(struct ofono_call_volume *cv, int muted); int ofono_call_volume_driver_register(const struct ofono_call_volume_driver *d); void ofono_call_volume_driver_unregister( |