libmpdclient 2.22
|
MPD client library. More...
#include <stdbool.h>
Go to the source code of this file.
Functions | |
bool | mpd_send_set_volume (struct mpd_connection *connection, unsigned volume) |
bool | mpd_run_set_volume (struct mpd_connection *connection, unsigned volume) |
bool | mpd_send_change_volume (struct mpd_connection *connection, int relative_volume) |
bool | mpd_run_change_volume (struct mpd_connection *connection, int relative_volume) |
bool | mpd_send_get_volume (struct mpd_connection *connection) |
int | mpd_run_get_volume (struct mpd_connection *connection) |
MPD client library.
Functions for manipulating MPD's mixer controls.
Do not include this header directly. Use mpd/client.h instead.
Definition in file mixer.h.
bool mpd_send_set_volume | ( | struct mpd_connection * | connection, |
unsigned | volume | ||
) |
Sets the volume of all output devices.
connection | the connection to MPD |
volume | the volume, an integer between 0 and 100 |
bool mpd_run_set_volume | ( | struct mpd_connection * | connection, |
unsigned | volume | ||
) |
Shortcut for mpd_send_set_volume() and mpd_response_finish().
connection | the connection to MPD |
volume | the volume, an integer between 0 and 100 |
bool mpd_send_change_volume | ( | struct mpd_connection * | connection, |
int | relative_volume | ||
) |
Changes the volume of all output devices.
connection | the connection to MPD |
relative_volume | the relative volume, an integer between -100 and 100 |
bool mpd_run_change_volume | ( | struct mpd_connection * | connection, |
int | relative_volume | ||
) |
Shortcut for mpd_send_change_volume() and mpd_response_finish().
connection | the connection to MPD |
relative_volume | the relative volume, an integer between -100 and 100 |
bool mpd_send_get_volume | ( | struct mpd_connection * | connection | ) |
Sends the "getvol" command to MPD. Call mpd_recv_pair() to read the response line.
connection | a valid and connected mpd_connection |
int mpd_run_get_volume | ( | struct mpd_connection * | connection | ) |
Shortcut for mpd_send_get_volume(), mpd_recv_pair_named() and mpd_response_finish().
connection | a valid and connected mpd_connection |