mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-20 03:51:18 +00:00
10 lines
161 B
C
10 lines
161 B
C
|
#ifndef MIXER_H_
|
||
|
#define MIXER_H_
|
||
|
|
||
|
int mixer_init(const char *);
|
||
|
int mixer_get_avg(int);
|
||
|
int mixer_get_left(int);
|
||
|
int mixer_get_right(int);
|
||
|
|
||
|
#endif /*MIXER_H_*/
|