libmpdclient 2.22
mixer.h
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-2-Clause
2// Copyright The Music Player Daemon Project
3
12#ifndef MPD_MIXER_H
13#define MPD_MIXER_H
14
15#include <stdbool.h>
16
17struct mpd_connection;
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
30bool
31mpd_send_set_volume(struct mpd_connection *connection, unsigned volume);
32
40bool
41mpd_run_set_volume(struct mpd_connection *connection, unsigned volume);
42
52bool
53mpd_send_change_volume(struct mpd_connection *connection, int relative_volume);
54
64bool
65mpd_run_change_volume(struct mpd_connection *connection, int relative_volume);
66
76bool
78
88int
90
91#ifdef __cplusplus
92}
93#endif
94
95#endif
bool mpd_send_change_volume(struct mpd_connection *connection, int relative_volume)
int mpd_run_get_volume(struct mpd_connection *connection)
bool mpd_run_set_volume(struct mpd_connection *connection, unsigned volume)
bool mpd_send_get_volume(struct mpd_connection *connection)
bool mpd_run_change_volume(struct mpd_connection *connection, int relative_volume)
bool mpd_send_set_volume(struct mpd_connection *connection, unsigned volume)