diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:17:51 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:17:51 +0200 |
commit | 237aedc590b58c0e69d7dfcac92b5f767b7c004a (patch) | |
tree | 83f361a82ba483f2daf83b677e8685cd953812d9 /ui/sync_cfg.h | |
parent | 4.5 (diff) | |
download | FreeFileSync-237aedc590b58c0e69d7dfcac92b5f767b7c004a.tar.gz FreeFileSync-237aedc590b58c0e69d7dfcac92b5f767b7c004a.tar.bz2 FreeFileSync-237aedc590b58c0e69d7dfcac92b5f767b7c004a.zip |
4.6
Diffstat (limited to 'ui/sync_cfg.h')
-rw-r--r-- | ui/sync_cfg.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ui/sync_cfg.h b/ui/sync_cfg.h index 5e93c64d..1f746709 100644 --- a/ui/sync_cfg.h +++ b/ui/sync_cfg.h @@ -20,9 +20,18 @@ struct ReturnSyncConfig }; }; +struct ExecWhenFinishedCfg +{ + std::wstring* command; //*must* be bound! + std::vector<std::wstring>* history; // + size_t historyMax; +}; + + ReturnSyncConfig::ButtonPressed showSyncConfigDlg(CompareVariant compareVar, SyncConfig& syncCfg, - xmlAccess::OnGuiError* handleError); //optional input parameter + xmlAccess::OnGuiError* handleError, // + ExecWhenFinishedCfg* execWhenFinished); //optional input parameter } #endif // SYNCCONFIG_H_INCLUDED |