comparison src/vfstrace/vfstrace.c @ 3156:08a91bda0829

adapt to audlegacy
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Fri, 22 May 2009 19:11:38 +0900
parents 1e48d5a52760
children
comparison
equal deleted inserted replaced
3155:4af16959f9d3 3156:08a91bda0829
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software 15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */ 17 */
18 18
19 #include <audacious/plugin.h> 19 #include <audlegacy/plugin.h>
20 20
21 VFSFile *(*vfs_fopen_impl)(const gchar *path, const gchar *mode) = NULL; 21 VFSFile *(*vfs_fopen_impl)(const gchar *path, const gchar *mode) = NULL;
22 gint (*vfs_fclose_impl)(VFSFile * file) = NULL; 22 gint (*vfs_fclose_impl)(VFSFile * file) = NULL;
23 size_t (*vfs_fread_impl)(gpointer ptr, size_t size, size_t nmemb, VFSFile *file) = NULL; 23 size_t (*vfs_fread_impl)(gpointer ptr, size_t size, size_t nmemb, VFSFile *file) = NULL;
24 size_t (*vfs_fwrite_impl)(gconstpointer ptr, size_t size, size_t nmemb, VFSFile *file) = NULL; 24 size_t (*vfs_fwrite_impl)(gconstpointer ptr, size_t size, size_t nmemb, VFSFile *file) = NULL;