Mercurial > audlegacy-plugins
view src/streambrowser/gui/streambrowser_win.h @ 2987:58c63fbbd3ce
Do not use non-blocking playback, it is entirely unnecessary and is the source of many problems we have with ALSA on weird cards.
| author | William Pitcock <nenolod@atheme.org> |
|---|---|
| date | Fri, 05 Dec 2008 07:10:58 -0600 |
| parents | fbb32674bfd2 |
| children |
line wrap: on
line source
#ifndef STREAMBROWSER_WIN_H #define STREAMBROWSER_WIN_H #include "../streamdir.h" void streambrowser_win_init(); void streambrowser_win_done(); void streambrowser_win_show(); void streambrowser_win_hide(); void streambrowser_win_set_streamdir(streamdir_t *streamdir, gchar *icon_filename); void streambrowser_win_set_category(streamdir_t *streamdir, category_t *category); void streambrowser_win_set_streaminfo(streamdir_t *streamdir, category_t *category, streaminfo_t *streaminfo); void streambrowser_win_set_update_function(void (* update_function) (streamdir_t *streamdir, category_t *category, streaminfo_t *streaminfo, gboolean add_to_playlist)); void streambrowser_win_set_category_state(streamdir_t *streamdir, category_t *category, gboolean fetching); void streambrowser_win_set_streaminfo_state(streamdir_t *streamdir, category_t *category, streaminfo_t *streaminfo, gboolean fetching); #endif // STREAMBROWSER_WIN_H
