myMPD
Internal API documentation
Loading...
Searching...
No Matches
albums.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-3.0-or-later
3 myMPD (c) 2018-2025 Juergen Mang <mail@jcgames.de>
4 https://github.com/jcorporation/mympd
5*/
6
11#ifndef MYMPD_API_ALBUMS_H
12#define MYMPD_API_ALBUMS_H
13
14#include "src/lib/mympd_state.h"
15
16sds mympd_api_album_detail(struct t_mympd_state *mympd_state, struct t_partition_state *partition_state,
17 sds buffer, unsigned request_id, sds albumid, const struct t_fields *tagcols);
18sds mympd_api_album_list(struct t_mympd_state *mympd_state, struct t_partition_state *partition_state,
19 sds buffer, unsigned request_id, sds expression, sds sort, bool sortdesc, unsigned offset, unsigned limit,
20 const struct t_fields *tagcols);
21
22#endif
sds mympd_api_album_detail(struct t_mympd_state *mympd_state, struct t_partition_state *partition_state, sds buffer, unsigned request_id, sds albumid, const struct t_fields *tagcols)
Definition albums.c:51
sds mympd_api_album_list(struct t_mympd_state *mympd_state, struct t_partition_state *partition_state, sds buffer, unsigned request_id, sds expression, sds sort, bool sortdesc, unsigned offset, unsigned limit, const struct t_fields *tagcols)
Definition albums.c:188
Central myMPD state for the mympd_api thread.
Definition fields.h:37
Definition mympd_state.h:215
Definition mympd_state.h:114