summaryrefslogtreecommitdiff
path: root/lib/resolve_path.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/resolve_path.h')
-rw-r--r--lib/resolve_path.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/lib/resolve_path.h b/lib/resolve_path.h
deleted file mode 100644
index b9c7196f..00000000
--- a/lib/resolve_path.h
+++ /dev/null
@@ -1,36 +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) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
-// **************************************************************************
-
-#ifndef RESOLVE_PATH_H_INCLUDED
-#define RESOLVE_PATH_H_INCLUDED
-
-#include <vector>
-#include <zen/zstring.h>
-
-namespace zen
-{
-/*
-FULL directory format:
- - expand macros
- - expand volume path by name
- - convert relative paths into absolute
- - trim whitespace and append file name separator
-*/
-Zstring getFormattedDirectoryName(const Zstring& dirString); //throw() - may still block for slow USB sticks! not thread-safe!!!(see ::GetFullPathName())
-
-//macro substitution only
-Zstring expandMacros(const Zstring& text);
-
-std::vector<Zstring> getDirectoryAliases(const Zstring& dirString); //may block for slow USB sticks when resolving [<volume name>]
-
-#ifdef ZEN_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
-#endif
-}
-
-
-#endif // RESOLVE_PATH_H_INCLUDED
bgstack15