diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2008-11-15 16:21:23 +0100 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2008-11-15 16:21:23 +0100 |
| commit | 1c50d6836601b8a6258dd6e299b3f299aa8d4a0f (patch) | |
| tree | 137c71a069d96a5695a2c73f11916b6ef6399fbd /common/vfs_types.h | |
| parent | 4fd3fefa6db8b77915bc67d4623ef3176a431004 (diff) | |
| download | tuxcmd-modules-0.6.59.tar.xz | |
Packed size info supportv0.6.59
Diffstat (limited to 'common/vfs_types.h')
| -rw-r--r-- | common/vfs_types.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/common/vfs_types.h b/common/vfs_types.h index 29b51b4..5e09ab6 100644 --- a/common/vfs_types.h +++ b/common/vfs_types.h @@ -138,9 +138,10 @@ enum TVFSItemType { struct TVFSItem { char *FName; - char *FDisplayName; - u_int64_t iSize; - __time_t m_time; // numbers should be located before the other variables (bug?) + char *FDisplayName; // valid UTF-8 string + int64_t iSize; + int64_t iPackedSize; // set to -1 if plugin doesn't support this feature + __time_t m_time; // numbers should be located before the other variables (bug?) __time_t a_time; __time_t c_time; __mode_t iMode; |
