diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:24:09 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:24:09 +0200 |
commit | 110fc5dee14fc7988f631a158e50d283446aba7a (patch) | |
tree | 7c19dfd3bdb8c4636409ec80a38c70499ac006db /comparison.h | |
parent | 5.14 (diff) | |
download | FreeFileSync-110fc5dee14fc7988f631a158e50d283446aba7a.tar.gz FreeFileSync-110fc5dee14fc7988f631a158e50d283446aba7a.tar.bz2 FreeFileSync-110fc5dee14fc7988f631a158e50d283446aba7a.zip |
5.15
Diffstat (limited to 'comparison.h')
-rw-r--r-- | comparison.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/comparison.h b/comparison.h index 40f7cedb..2796670a 100644 --- a/comparison.h +++ b/comparison.h @@ -11,6 +11,8 @@ #include "lib/process_xml.h" #include "process_callback.h" #include "lib/norm_filter.h" +#include "lib/lock_holder.h" + namespace zen { @@ -47,9 +49,10 @@ void compare(size_t fileTimeTolerance, //max allowed file time deviation xmlAccess::OptionalDialogs& warnings, bool allowUserInteraction, bool runWithBackgroundPriority, - + bool createDirLocks, + std::unique_ptr<LockHolder>& dirLocks, //out const std::vector<FolderPairCfg>& cfgList, - FolderComparison& output, + FolderComparison& output, //out ProcessCallback& callback); } |