summaryrefslogtreecommitdiff
path: root/common/vfs_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/vfs_types.h')
-rw-r--r--common/vfs_types.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/common/vfs_types.h b/common/vfs_types.h
index 609a78b..753f5c5 100644
--- a/common/vfs_types.h
+++ b/common/vfs_types.h
@@ -35,7 +35,7 @@ typedef void (* TVFSLogFunc)(char *s);
typedef int (* TVFSCopyCallBackFunc)(u_int64_t iPos, u_int64_t iMax, void *data);
typedef void *TVFSFileDes;
-static const int cVFSVersion = 3; // current version of the VFS API
+static const int cVFSVersion = 4; // current version of the VFS API
// Capabilities
static const int capVFS_nil = 0;
@@ -91,7 +91,8 @@ enum TVFSItemType {
struct TVFSItem {
- char *sFileName;
+ char *FName;
+ char *FDisplayName;
u_int64_t iSize;
__time_t m_time; // numbers should be located before the other variables (bug?)
__time_t a_time;