Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/DSUtil/PathUtils.h')
-rw-r--r--src/DSUtil/PathUtils.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/DSUtil/PathUtils.h b/src/DSUtil/PathUtils.h
index bec04b99f..f90826fc7 100644
--- a/src/DSUtil/PathUtils.h
+++ b/src/DSUtil/PathUtils.h
@@ -1,5 +1,5 @@
/*
- * (C) 2013-2014 see Authors.txt
+ * (C) 2013-2015 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -39,5 +39,9 @@ namespace PathUtils
bool Exists(LPCTSTR path);
bool IsFile(LPCTSTR path);
bool IsDir(LPCTSTR path);
+ bool IsLinkFile(LPCTSTR path);
bool CreateDirRecursive(LPCTSTR path);
+ CString ResolveLinkFile(LPCTSTR path);
+ void RecurseAddDir(LPCTSTR path, CAtlList<CString>& sl);
+ void ParseDirs(CAtlList<CString>& pathsList);
}