diff src/adplug/adplug-xmms.cc @ 1978:fa9f85cebade

s/vfs_/aud_vfs_/g
author William Pitcock <nenolod@atheme.org>
date Sun, 07 Oct 2007 00:25:33 -0500
parents 5fa26178eaef
children 489e32a8e106
line wrap: on
line diff
--- a/src/adplug/adplug-xmms.cc	Sun Oct 07 00:23:19 2007 -0500
+++ b/src/adplug/adplug-xmms.cc	Sun Oct 07 00:25:33 2007 -0500
@@ -94,7 +94,7 @@
 static InputPlayback *playback;
 
 // XXX: this function is not in the public API yet.
-extern "C" VFSFile * vfs_buffered_file_new_from_uri (gchar * uri);
+extern "C" VFSFile * aud_vfs_buffered_file_new_from_uri (gchar * uri);
 
 /***** Debugging *****/
 
@@ -508,7 +508,7 @@
 adplug_info_box (char *filename)
 {
   CSilentopl tmpopl;
-  VFSFile *fd = vfs_buffered_file_new_from_uri (filename);
+  VFSFile *fd = aud_vfs_buffered_file_new_from_uri (filename);
 
   if (!fd)
     return;
@@ -681,7 +681,7 @@
 adplug_get_tuple (char *filename)
 {
   CSilentopl tmpopl;
-  VFSFile *fd = vfs_buffered_file_new_from_uri (filename);
+  VFSFile *fd = aud_vfs_buffered_file_new_from_uri (filename);
 
   if (!fd)
     return NULL;
@@ -760,7 +760,7 @@
   // we use VfsBufferedFile class here because adplug does a lot of
   // probing. a short delay before probing begins is better than
   // a lot of delay during probing.
-  VFSFile *fd = vfs_buffered_file_new_from_uri (playback->filename);
+  VFSFile *fd = aud_vfs_buffered_file_new_from_uri (playback->filename);
 
   if (!fd)
   {
@@ -888,7 +888,7 @@
   free (sndbuf);
   plr.playing = false;          // important! XMMS won't get a self-ended song without it.
   dbg_printf (".\n");
-  vfs_fclose (fd);
+  aud_vfs_fclose (fd);
   return (NULL);
 }
 
@@ -921,7 +921,7 @@
 adplug_is_our_file (char *filename)
 {
   CSilentopl tmpopl;
-  VFSFile *fd = vfs_buffered_file_new_from_uri (filename);
+  VFSFile *fd = aud_vfs_buffered_file_new_from_uri (filename);
   if (!fd)
     return FALSE;