summaryrefslogtreecommitdiff
path: root/shared/resolve_path.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:14:37 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:14:37 +0200
commit8bf668665b107469086f16cb8ad23e47d479d2b4 (patch)
tree66a91ef06a8caa7cd6819dcbe1860693d3eda8d5 /shared/resolve_path.h
parent3.21 (diff)
downloadFreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.tar.gz
FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.tar.bz2
FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.zip
4.0
Diffstat (limited to 'shared/resolve_path.h')
-rw-r--r--shared/resolve_path.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/shared/resolve_path.h b/shared/resolve_path.h
index f6ae58cb..3be1d78e 100644
--- a/shared/resolve_path.h
+++ b/shared/resolve_path.h
@@ -13,6 +13,11 @@
namespace zen
{
Zstring getFormattedDirectoryName(const Zstring& dirname);
+
+
+#ifdef FFS_WIN
+std::vector<Zstring> getDirectoryAliases(Zstring dirname);
+#endif
}
bgstack15