libmpdclient 2.9
song.h
Go to the documentation of this file.
1/* libmpdclient
2 (c) 2003-2010 The Music Player Daemon Project
3 This project's homepage is: http://www.musicpd.org
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions
7 are met:
8
9 - Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
11
12 - Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
15
16 - Neither the name of the Music Player Daemon nor the names of its
17 contributors may be used to endorse or promote products derived from
18 this software without specific prior written permission.
19
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31*/
32
39#ifndef MPD_SONG_H
40#define MPD_SONG_H
41
42#include <mpd/tag.h>
43#include <mpd/compiler.h>
44
45#include <stdbool.h>
46#include <time.h>
47
48struct mpd_pair;
49struct mpd_connection;
50
58struct mpd_song;
59
60#ifdef __cplusplus
61extern "C" {
62#endif
63
67void mpd_song_free(struct mpd_song *song);
68
74mpd_malloc
75struct mpd_song *
76mpd_song_dup(const struct mpd_song *song);
77
83mpd_pure
84const char *
85mpd_song_get_uri(const struct mpd_song *song);
86
98mpd_pure
99const char *
100mpd_song_get_tag(const struct mpd_song *song,
101 enum mpd_tag_type type, unsigned idx);
102
107mpd_pure
108unsigned
109mpd_song_get_duration(const struct mpd_song *song);
110
115mpd_pure
116unsigned
117mpd_song_get_start(const struct mpd_song *song);
118
124mpd_pure
125unsigned
126mpd_song_get_end(const struct mpd_song *song);
127
132mpd_pure
133time_t
135
143void
144mpd_song_set_pos(struct mpd_song *song, unsigned pos);
145
150mpd_pure
151unsigned
152mpd_song_get_pos(const struct mpd_song *song);
153
158mpd_pure
159unsigned
160mpd_song_get_id(const struct mpd_song *song);
161
166mpd_pure
167unsigned
168mpd_song_get_prio(const struct mpd_song *song);
169
177mpd_malloc
178struct mpd_song *
179mpd_song_begin(const struct mpd_pair *pair);
180
189bool
190mpd_song_feed(struct mpd_song *song, const struct mpd_pair *pair);
191
198mpd_malloc
199struct mpd_song *
200mpd_recv_song(struct mpd_connection *connection);
201
202#ifdef __cplusplus
203}
204#endif
205
206#endif
Compiler specific definitions.
void mpd_song_free(struct mpd_song *song)
mpd_pure unsigned mpd_song_get_duration(const struct mpd_song *song)
mpd_pure const char * mpd_song_get_tag(const struct mpd_song *song, enum mpd_tag_type type, unsigned idx)
mpd_malloc struct mpd_song * mpd_recv_song(struct mpd_connection *connection)
mpd_pure unsigned mpd_song_get_id(const struct mpd_song *song)
mpd_malloc struct mpd_song * mpd_song_dup(const struct mpd_song *song)
mpd_pure unsigned mpd_song_get_start(const struct mpd_song *song)
mpd_pure unsigned mpd_song_get_pos(const struct mpd_song *song)
mpd_pure time_t mpd_song_get_last_modified(const struct mpd_song *song)
mpd_pure unsigned mpd_song_get_prio(const struct mpd_song *song)
mpd_pure unsigned mpd_song_get_end(const struct mpd_song *song)
void mpd_song_set_pos(struct mpd_song *song, unsigned pos)
mpd_malloc struct mpd_song * mpd_song_begin(const struct mpd_pair *pair)
bool mpd_song_feed(struct mpd_song *song, const struct mpd_pair *pair)
mpd_pure const char * mpd_song_get_uri(const struct mpd_song *song)
Definition: pair.h:41
Definition: song.h:49
mpd_tag_type
Definition: tag.h:37