Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions include/mpd/feature.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define LIBMPDCLIENT_FEATURE_H

/**
* @since libmpdclient 2.23 added support for #MPD_TAG_SHOWMOVEMENT.
* @since libmpdclient 2.23
*/
enum mpd_protocol_feature
{
Expand All @@ -17,7 +17,7 @@ enum mpd_protocol_feature

MPD_FEATURE_HIDE_PLAYLISTS_IN_ROOT,

/* IMPORTANT: the ordering of tag types above must be
/* IMPORTANT: the ordering above must be
retained, or else the libmpdclient ABI breaks */

MPD_FEATURE_COUNT
Expand All @@ -30,6 +30,8 @@ extern "C" {
/**
* Looks up the name of the specified protocol feature.
*
* @since libmpdclient 2.23
*
* @return the name, or NULL if the tag type is not valid
*/
const char *
Expand All @@ -38,6 +40,8 @@ mpd_feature_name(enum mpd_protocol_feature feature);
/**
* Parses a protocol feature name, and returns its #mpd_protocol_feature value.
*
* @since libmpdclient 2.23
*
* @return a #mpd_protocol_feature value, or MPD_FEATURE_UNKNOWN if the name was
* not recognized
*/
Expand Down
18 changes: 9 additions & 9 deletions libmpdclient.ld
Original file line number Diff line number Diff line change
Expand Up @@ -539,15 +539,15 @@ global:
mpd_send_binarylimit;
mpd_run_binarylimit;

/* mpd/albumart.h */
mpd_send_albumart;
mpd_recv_albumart;
mpd_run_albumart;

/* mpd/readpicture.h */
mpd_send_readpicture;
mpd_recv_readpicture;
mpd_run_readpicture;
/* mpd/albumart.h */
mpd_send_albumart;
mpd_recv_albumart;
mpd_run_albumart;

/* mpd/readpicture.h */
mpd_send_readpicture;
mpd_recv_readpicture;
mpd_run_readpicture;

/* mpd/position.h */
mpd_position_whence_char;
Expand Down
Loading