Mercurial > audlegacy
view libaudacious/vfs.h @ 227:539a0fa7f030 trunk
[svn] Unicode support fixes, based on an XMMS patch written by Ilya Konstantinov. <ikonst@users.sourceforge.net>:
- Fixes UTF16 to UTF8 down-conversion.
- Fixes length management of UTF8 entities.
- Doesn't break ASCII support.
- Corrects several issues with the original implementation.
author | nenolod |
---|---|
date | Fri, 25 Nov 2005 20:23:40 -0800 |
parents | cb178e5ad177 |
children | 86ca43d8a845 |
line wrap: on
line source
#ifndef VFS_H #define VFS_H #include <glib.h> #include <stdio.h> typedef struct _VFSFile VFSFile; G_BEGIN_DECLS /* Reserved for private use by BMP */ gboolean vfs_init(void); VFSFile * vfs_fopen(const gchar * path, const gchar * mode); gint vfs_fclose(VFSFile * file); size_t vfs_fread(gpointer ptr, size_t size, size_t nmemb, VFSFile * file); size_t vfs_fwrite(gconstpointer ptr, size_t size, size_t nmemb, VFSFile *file); gint vfs_fseek(VFSFile * file, glong offset, gint whence); void vfs_rewind(VFSFile * file); glong vfs_ftell(VFSFile * file); gboolean vfs_file_test(const gchar * path, GFileTest test); gboolean vfs_is_writeable(const gchar * path); gboolean vfs_truncate(VFSFile * file, glong length); G_END_DECLS #endif /* VFS_H */