comparison src/streambrowser/xiph.h @ 2815:cc6f02424609

added initial support for xiph streaming directory; small bug fixes & code cleanups
author Calin Crisan ccrisan@gmail.com
date Sun, 13 Jul 2008 04:00:04 +0300
parents
children 587b3657990d
comparison
equal deleted inserted replaced
2814:a03d670e8752 2815:cc6f02424609
1 /*
2 * Audacious Streambrowser Plugin
3 *
4 * Copyright (c) 2008 Calin Crisan <ccrisan@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 3 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses>.
17 */
18
19
20 #ifndef XIPH_H
21 #define XIPH_H
22
23 #include "streambrowser.h"
24 #include "streamdir.h"
25
26 #define XIPH_NAME "Xiph"
27 #define XIPH_ICON DATA_DIR G_DIR_SEPARATOR_S "images" G_DIR_SEPARATOR_S "xiph.png"
28 #define XIPH_STREAMDIR_URL "http://dir.xiph.org/yp.xml"
29 #define XIPH_TEMP_FILENAME "file:///tmp/xiph_yp.xml"
30
31
32 gboolean xiph_category_fetch(category_t *category);
33 streamdir_t* xiph_streamdir_fetch();
34
35
36 #endif // SHOUTCAST_H
37