blob: 5979210a0e507091a3a8ace02c74d3c3208fe2db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef INTERFACE_H
#define INTERFACE_H
#include <ncurses.h>
#define VOLUME_MAX UINT16_MAX
#define VOLUME_BAR_LEN 50
#define WIDTH 80
#define HEIGHT 10
void print_sinks(void);
void print_volume(pa_volume_t, int);
void get_input(void);
void interface_clear(void);
#endif
|