summaryrefslogtreecommitdiff
path: root/common/vfs_types.h
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2008-10-05 11:04:26 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2008-10-05 11:04:26 +0200
commitd0caac91ac0a03e021d50d1de978733e11ba2ccd (patch)
treeb763e376e8f289baaccf332398d9354663115792 /common/vfs_types.h
parentc41d3e7d896492dd70cd1d548ef4fd5b3cbe4954 (diff)
downloadtuxcmd-modules-d0caac91ac0a03e021d50d1de978733e11ba2ccd.tar.xz
VFS API break: Introduce FDisplayName propertyv0.6.52
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;