changeset 2561:5b761b745289 trunk

[svn] - provide fd->uri for buffered files
author nenolod
date Fri, 23 Feb 2007 20:10:54 -0800
parents 5511818eb9d3
children 07b990906823
files ChangeLog src/audacious/build_stamp.c src/audacious/vfs_buffered_file.c
diffstat 3 files changed, 10 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Feb 21 15:02:54 2007 -0800
+++ b/ChangeLog	Fri Feb 23 20:10:54 2007 -0800
@@ -1,3 +1,11 @@
+2007-02-21 23:02:54 +0000  Giacomo Lozito <james@develia.org>
+  revision [4130]
+  - added custom field in tuple, for internal use by plugins or by whatever wanting to use it
+  trunk/src/audacious/titlestring.c |    3 +++
+  trunk/src/audacious/titlestring.h |    5 +++--
+  2 files changed, 6 insertions(+), 2 deletions(-)
+
+
 2007-02-21 12:25:12 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
   revision [4128]
   revise str_to_utf8():
--- a/src/audacious/build_stamp.c	Wed Feb 21 15:02:54 2007 -0800
+++ b/src/audacious/build_stamp.c	Fri Feb 23 20:10:54 2007 -0800
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070221-4128";
+const gchar *svn_stamp = "20070221-4130";
--- a/src/audacious/vfs_buffered_file.c	Wed Feb 21 15:02:54 2007 -0800
+++ b/src/audacious/vfs_buffered_file.c	Fri Feb 23 20:10:54 2007 -0800
@@ -207,6 +207,7 @@
 
     handle->handle = fd;
     handle->base = &buffered_file_const;
+    handle->uri = g_strdup(uri);
 
     return handle;
 }