picox  0.1
xunionfs.h ファイル
xunionfs.h の依存先関係図:
被依存関係図:

[ソースコード]

マクロ定義

#define xunionfs_close   xvfs_close
 
#define xunionfs_closedir   xvfs_closedir
 
#define xunionfs_copyfile2   xvfs_copyfile2
 
#define xunionfs_flush   xvfs_flush
 
#define xunionfs_getc   xvfs_getc
 
#define xunionfs_gets   xvfs_gets
 
#define xunionfs_init_stream   xvfs_init_stream
 
#define xunionfs_printf   xvfs_printf
 
#define xunionfs_putc   xvfs_putc
 
#define xunionfs_puts   xvfs_puts
 
#define xunionfs_read   xvfs_read
 
#define xunionfs_readdir   xvfs_readdir
 
#define xunionfs_seek   xvfs_seek
 
#define xunionfs_tell   xvfs_tell
 
#define xunionfs_vprintf   xvfs_vprintf
 
#define xunionfs_write   xvfs_write
 

関数

XError xunionfs_chdir (const char *path)
 
XError xunionfs_copyfile (const char *src, const char *dst)
 
XError xunionfs_copytree (const char *src, const char *dst)
 
void xunionfs_deinit ()
 xunionfsの終了処理を行います。
 
XError xunionfs_exists (const char *path, bool *exists)
 
XError xunionfs_getcwd (char *buf, size_t size)
 
void xunionfs_init ()
 xunionfsの初期化を行います [詳解]
 
XError xunionfs_is_directory (const char *path, bool *isdir)
 
XError xunionfs_is_regular (const char *path, bool *isreg)
 
XError xunionfs_makedirs (const char *path, bool exist_ok)
 
XError xunionfs_mkdir (const char *path)
 
XError xunionfs_mount (XVirtualFs *vfs, const char *path, const char *realpath)
 仮想ファイルシステムをディレクトリツリーに接続します [詳解]
 
XError xunionfs_open (const char *path, XOpenMode mode, XFile **o_fp)
 
XError xunionfs_opendir (const char *path, XDir **o_dir)
 
XError xunionfs_remove (const char *path)
 
XError xunionfs_rename (const char *oldpath, const char *newpath)
 
XError xunionfs_rmtree (const char *path)
 
XError xunionfs_stat (const char *path, XStat *statbuf)
 
XError xunionfs_umount (const char *path)
 ファイルシステムのマウントを解除(アンマウント)します [詳解]
 
XError xunionfs_utime (const char *path, XTime time)
 
XError xunionfs_walktree (const char *path, XFsTreeWalker walker, void *userptr)
 

詳解

著者
MaskedW