Mercurial > audlegacy-plugins
changeset 2053:059bd21a0c80
PlaylistContainer API updates
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Sat, 13 Oct 2007 20:38:28 -0500 |
parents | d8e453d09ee4 |
children | f7deb2ae6f0a |
files | src/m3u/m3u.c src/pls/pls.c src/xspf/xspf.c |
diffstat | 3 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/m3u/m3u.c Sat Oct 13 20:12:45 2007 -0500 +++ b/src/m3u/m3u.c Sat Oct 13 20:38:28 2007 -0500 @@ -207,12 +207,12 @@ static void init(void) { - playlist_container_register(&plc_m3u); + aud_playlist_container_register(&plc_m3u); } static void cleanup(void) { - playlist_container_unregister(&plc_m3u); + aud_playlist_container_unregister(&plc_m3u); } DECLARE_PLUGIN(m3u, init, cleanup, NULL, NULL, NULL, NULL, NULL, NULL);
--- a/src/pls/pls.c Sat Oct 13 20:12:45 2007 -0500 +++ b/src/pls/pls.c Sat Oct 13 20:38:28 2007 -0500 @@ -140,12 +140,12 @@ static void init(void) { - playlist_container_register(&plc_pls); + aud_playlist_container_register(&plc_pls); } static void cleanup(void) { - playlist_container_unregister(&plc_pls); + aud_playlist_container_unregister(&plc_pls); } DECLARE_PLUGIN(pls, init, cleanup, NULL, NULL, NULL, NULL, NULL, NULL);
--- a/src/xspf/xspf.c Sat Oct 13 20:12:45 2007 -0500 +++ b/src/xspf/xspf.c Sat Oct 13 20:38:28 2007 -0500 @@ -565,13 +565,13 @@ static void xspf_init(void) { - playlist_container_register(&plc_xspf); + aud_playlist_container_register(&plc_xspf); } static void xspf_cleanup(void) { - playlist_container_unregister(&plc_xspf); + aud_playlist_container_unregister(&plc_xspf); }