1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
// SPDX-License-Identifier: BSD-3-Clause
// Copyright The Music Player Daemon Project
#ifndef LIBMPDCLIENT_FEATURE_H
#define LIBMPDCLIENT_FEATURE_H
/**
* @since libmpdclient 2.23
*/
enum mpd_protocol_feature
{
/**
* Special value returned by mpd_feature_parse() when an
* unknown name was passed.
*/
MPD_FEATURE_UNKNOWN = -1,
MPD_FEATURE_HIDE_PLAYLISTS_IN_ROOT,
/* IMPORTANT: the ordering above must be
retained, or else the libmpdclient ABI breaks */
MPD_FEATURE_COUNT
};
#ifdef __cplusplus
extern "C" {
#endif
/**
* 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 *
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
*/
enum mpd_protocol_feature
mpd_feature_name_parse(const char *name);
#ifdef __cplusplus
}
#endif
#endif
|