diff options
author | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2015-12-23 03:34:36 +0100 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2015-12-23 03:34:36 +0100 |
commit | cb1ef99cc1a4902a00eed54e3dfb6ea5df90ab6f (patch) | |
tree | 37d88ee5de08df68e9f26ac464ab12b3e340a1c8 /include | |
parent | 03b0ce0227a81087f00bb267edf2824eb34b139e (diff) | |
download | hardware_ril_samsung-ril-cb1ef99cc1a4902a00eed54e3dfb6ea5df90ab6f.zip hardware_ril_samsung-ril-cb1ef99cc1a4902a00eed54e3dfb6ea5df90ab6f.tar.gz hardware_ril_samsung-ril-cb1ef99cc1a4902a00eed54e3dfb6ea5df90ab6f.tar.bz2 |
samsung-ril-socket: mic mute implementation
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/samsung-ril-socket.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/samsung-ril-socket.h b/include/samsung-ril-socket.h index 8282727..a21b3a9 100644 --- a/include/samsung-ril-socket.h +++ b/include/samsung-ril-socket.h @@ -39,6 +39,7 @@ #define SRS_SND_SET_CALL_VOLUME 0x0201 #define SRS_SND_SET_CALL_AUDIO_PATH 0x0202 #define SRS_SND_SET_CALL_CLOCK_SYNC 0x0203 +#define SRS_SND_SET_MIC_MUTE 0x0204 #define SRS_TEST_SET_RADIO_STATE 0x0301 @@ -113,6 +114,10 @@ struct srs_snd_call_clock_sync_data { unsigned char sync; } __attribute__((__packed__)); +struct srs_snd_mic_mute_data { + int mute; +} __attribute__((__packed__)); + struct srs_test_set_radio_state_data { int state; } __attribute__((__packed__)); |