1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 23:19:08 +00:00
conky/src/mixer.h

26 lines
649 B
C
Raw Normal View History

/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
#ifndef MIXER_H_
#define MIXER_H_
#ifdef __cplusplus
extern "C" {
#endif
void parse_mixer_arg(struct text_object *, const char *);
uint8_t mixer_percentage(struct text_object *obj);
uint8_t mixerl_percentage(struct text_object *obj);
uint8_t mixerr_percentage(struct text_object *obj);
int check_mixer_muted(struct text_object *);
void scan_mixer_bar(struct text_object *, const char *);
2009-12-04 01:12:59 +00:00
double mixer_barval(struct text_object *);
double mixerl_barval(struct text_object *);
double mixerr_barval(struct text_object *);
#ifdef __cplusplus
}
#endif
#endif /*MIXER_H_*/