summaryrefslogtreecommitdiff
path: root/shared/resolve_path.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/resolve_path.h')
-rw-r--r--shared/resolve_path.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/shared/resolve_path.h b/shared/resolve_path.h
deleted file mode 100644
index 3be1d78e..00000000
--- a/shared/resolve_path.h
+++ /dev/null
@@ -1,24 +0,0 @@
-// **************************************************************************
-// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
-// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) *
-// **************************************************************************
-
-#ifndef RESOLVE_PATH_H_INCLUDED
-#define RESOLVE_PATH_H_INCLUDED
-
-#include "zstring.h"
-
-
-namespace zen
-{
-Zstring getFormattedDirectoryName(const Zstring& dirname);
-
-
-#ifdef FFS_WIN
-std::vector<Zstring> getDirectoryAliases(Zstring dirname);
-#endif
-}
-
-
-#endif // RESOLVE_PATH_H_INCLUDED
bgstack15