MusicChunk: remove obsolete prototypes

This commit is contained in:
Max Kellermann 2013-09-26 22:34:43 +02:00
parent 3216f4b257
commit f3fc76e3c8
1 changed files with 1 additions and 7 deletions

View File

@ -67,7 +67,7 @@ struct music_chunk {
* An optional tag associated with this chunk (and the
* following chunks); appears at song boundaries. The tag
* object is owned by this chunk, and must be freed when this
* chunk is deinitialized in music_chunk_free()
* chunk is deinitialized.
*/
Tag *tag;
@ -143,10 +143,4 @@ struct music_chunk {
bool Expand(AudioFormat af, size_t length);
};
void
music_chunk_init(struct music_chunk *chunk);
void
music_chunk_free(struct music_chunk *chunk);
#endif