blob: d152c7dd20d17c59d6e55df609870a3de5f9abcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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_init(void);
void interface_clear(void);
#endif
|