comparison src/audacious/pluginenum.c @ 3685:0ba593887cae

Export VfsBufferedFile functions.
author William Pitcock <nenolod@atheme.org>
date Mon, 01 Oct 2007 23:39:22 -0500
parents 2f9d8b987e40
children 12e11b15b549
comparison
equal deleted inserted replaced
3684:2f9d8b987e40 3685:0ba593887cae
51 #include "discovery.h" 51 #include "discovery.h"
52 52
53 #include "pluginenum.h" 53 #include "pluginenum.h"
54 54
55 #include "vfs_buffer.h" 55 #include "vfs_buffer.h"
56 #include "vfs_buffered_file.h"
56 57
57 const gchar *plugin_dir_list[] = { 58 const gchar *plugin_dir_list[] = {
58 PLUGINSUBS, 59 PLUGINSUBS,
59 NULL 60 NULL
60 }; 61 };
85 .vfs_is_remote = vfs_is_remote, 86 .vfs_is_remote = vfs_is_remote,
86 .vfs_is_streaming = vfs_is_streaming, 87 .vfs_is_streaming = vfs_is_streaming,
87 88
88 .vfs_buffer_new = vfs_buffer_new, 89 .vfs_buffer_new = vfs_buffer_new,
89 .vfs_buffer_new_from_string = vfs_buffer_new_from_string, 90 .vfs_buffer_new_from_string = vfs_buffer_new_from_string,
91
92 .vfs_buffered_file_new_from_uri = vfs_buffered_file_new_from_uri,
93 .vfs_buffered_file_release_live_fd = vfs_buffered_file_release_live_fd,
90 }; 94 };
91 95
92 /*****************************************************************/ 96 /*****************************************************************/
93 97
94 GList *lowlevel_list = NULL; 98 GList *lowlevel_list = NULL;