summaryrefslogtreecommitdiff
path: root/lib/resolve_path.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:21:59 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:21:59 +0200
commitd4af25c52a28b93484ffb55e0a8027bc4ce7856f (patch)
tree853d57468d6b370711e7a5dd2c3dc7d5bac81b10 /lib/resolve_path.h
parent5.8 (diff)
downloadFreeFileSync-d4af25c52a28b93484ffb55e0a8027bc4ce7856f.tar.gz
FreeFileSync-d4af25c52a28b93484ffb55e0a8027bc4ce7856f.tar.bz2
FreeFileSync-d4af25c52a28b93484ffb55e0a8027bc4ce7856f.zip
5.9
Diffstat (limited to 'lib/resolve_path.h')
-rw-r--r--lib/resolve_path.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/resolve_path.h b/lib/resolve_path.h
index 0132b51f..975ed304 100644
--- a/lib/resolve_path.h
+++ b/lib/resolve_path.h
@@ -24,11 +24,11 @@ Zstring getFormattedDirectoryName(const Zstring& dirString); //throw() - non-blo
//macro substitution only
Zstring expandMacros(const Zstring& text);
+std::vector<Zstring> getDirectoryAliases(const Zstring& dirString);
+
#ifdef FFS_WIN
//*blocks* if network is not reachable or when showing login prompt dialog!
void loginNetworkShare(const Zstring& dirname, bool allowUserInteraction); //throw() - user interaction: show OS password prompt
-
-std::vector<Zstring> getDirectoryAliases(const Zstring& dirString);
#endif
}
bgstack15