2014-04-06 17:19:33 +00:00
|
|
|
#ifndef VFS_FILE_FUNCS_H
|
|
|
|
#define VFS_FILE_FUNCS_H
|
|
|
|
|
2012-06-01 15:23:19 +00:00
|
|
|
#include "VFSDefines.h"
|
|
|
|
|
|
|
|
|
|
|
|
VFS_NAMESPACE_START
|
|
|
|
|
|
|
|
void *real_fopen(const char *name, const char *mode);
|
|
|
|
int real_fclose(void *fh);
|
|
|
|
int real_fseek(void *fh, vfspos offset, int origin);
|
|
|
|
vfspos real_ftell(void *fh);
|
|
|
|
size_t real_fread(void *ptr, size_t size, size_t count, void *fh);
|
|
|
|
size_t real_fwrite(const void *ptr, size_t size, size_t count, void *fh);
|
|
|
|
int real_feof(void *fh);
|
|
|
|
int real_fflush(void *fh);
|
|
|
|
|
|
|
|
VFS_NAMESPACE_END
|
2014-04-06 17:19:33 +00:00
|
|
|
|
|
|
|
#endif
|