comparison src/audacious/pluginenum.c @ 3684:2f9d8b987e40

Export VfsBuffer functions.
author William Pitcock <nenolod@atheme.org>
date Mon, 01 Oct 2007 23:32:57 -0500
parents 4284187479d7
children 0ba593887cae
comparison
equal deleted inserted replaced
3683:4284187479d7 3684:2f9d8b987e40
50 #include "visualization.h" 50 #include "visualization.h"
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"
56
55 const gchar *plugin_dir_list[] = { 57 const gchar *plugin_dir_list[] = {
56 PLUGINSUBS, 58 PLUGINSUBS,
57 NULL 59 NULL
58 }; 60 };
59 61
80 .vfs_fprintf = vfs_fprintf, 82 .vfs_fprintf = vfs_fprintf,
81 .vfs_register_transport = vfs_register_transport, 83 .vfs_register_transport = vfs_register_transport,
82 .vfs_file_get_contents = vfs_file_get_contents, 84 .vfs_file_get_contents = vfs_file_get_contents,
83 .vfs_is_remote = vfs_is_remote, 85 .vfs_is_remote = vfs_is_remote,
84 .vfs_is_streaming = vfs_is_streaming, 86 .vfs_is_streaming = vfs_is_streaming,
87
88 .vfs_buffer_new = vfs_buffer_new,
89 .vfs_buffer_new_from_string = vfs_buffer_new_from_string,
85 }; 90 };
86 91
87 /*****************************************************************/ 92 /*****************************************************************/
88 93
89 GList *lowlevel_list = NULL; 94 GList *lowlevel_list = NULL;