aboutsummaryrefslogtreecommitdiffstats
path: root/include/snd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/snd.h')
-rw-r--r--include/snd.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/include/snd.h b/include/snd.h
index 970fe68..dfa1993 100644
--- a/include/snd.h
+++ b/include/snd.h
@@ -58,10 +58,22 @@
*/
struct ipc_snd_spkr_volume_ctrl_data {
- unsigned char type;
+ unsigned char type; // IPC_SND_VOLUME_TYPE
unsigned char volume;
} __attribute__((__packed__));
+struct ipc_snd_mic_mute_ctrl_data {
+ unsigned char mute;
+} __attribute__((__packed__));
+
+struct ipc_snd_audio_path_ctrl_data {
+ unsigned char path; // IPC_SND_AUDIO_PATH
+} __attribute__((__packed__));
+
+struct ipc_snd_clock_ctrl_data {
+ unsigned char sync;
+} __attribute__((__packed__));
+
#endif
// vim:ts=4:sw=4:expandtab