mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 23:15:41 +01:00
5b6b5fd14b
For multichannel mixer controls, add the channel name to each screen control. Also make some other small changes. Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
10 lines
291 B
C
10 lines
291 B
C
#ifndef TEXTBOX_H_INCLUDED
|
|
#define TEXTBOX_H_INCLUDED
|
|
|
|
void show_error(const char *msg, int err);
|
|
void show_alsa_error(const char *msg, int err);
|
|
void show_text(const char *const *text_lines, unsigned int count,
|
|
const char *title);
|
|
void show_textfile(const char *file_name);
|
|
|
|
#endif
|