diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:11:56 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:11:56 +0200 |
commit | 98ecf620f7de377dc8ae9ad7fbd1e3b24477e138 (patch) | |
tree | faadc6d8822c20cd3bc6f50b2a98e6c580585949 /shared/file_traverser.h | |
parent | 3.16 (diff) | |
download | FreeFileSync-98ecf620f7de377dc8ae9ad7fbd1e3b24477e138.tar.gz FreeFileSync-98ecf620f7de377dc8ae9ad7fbd1e3b24477e138.tar.bz2 FreeFileSync-98ecf620f7de377dc8ae9ad7fbd1e3b24477e138.zip |
3.17
Diffstat (limited to 'shared/file_traverser.h')
-rw-r--r-- | shared/file_traverser.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/shared/file_traverser.h b/shared/file_traverser.h index 0e25886b..db77f7cd 100644 --- a/shared/file_traverser.h +++ b/shared/file_traverser.h @@ -7,13 +7,14 @@ #ifndef FILETRAVERSER_H_INCLUDED #define FILETRAVERSER_H_INCLUDED +#include <wx/string.h> #include "zstring.h" -#include <wx/longlong.h> #include "loki/TypeManip.h" +#include "int64.h" //advanced file traverser returning metadata and hierarchical information on files and directories -namespace ffs3 +namespace zen { class TraverseCallback { @@ -22,13 +23,13 @@ public: struct FileInfo { - wxULongLong fileSize; //unit: bytes! - wxLongLong lastWriteTimeRaw; //number of seconds since Jan. 1st 1970 UTC + zen::UInt64 fileSize; //unit: bytes! + zen::Int64 lastWriteTimeRaw; //number of seconds since Jan. 1st 1970 UTC }; struct SymlinkInfo { - wxLongLong lastWriteTimeRaw; //number of seconds since Jan. 1st 1970 UTC + zen::Int64 lastWriteTimeRaw; //number of seconds since Jan. 1st 1970 UTC Zstring targetPath; //may be empty if something goes wrong bool dirLink; //"true": point to dir; "false": point to file (or broken Link on Linux) }; |