summaryrefslogtreecommitdiff
path: root/src/filesys.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/filesys.h')
-rw-r--r--src/filesys.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/filesys.h b/src/filesys.h
index 19fcbb673..94d0c874d 100644
--- a/src/filesys.h
+++ b/src/filesys.h
@@ -28,10 +28,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define DIR_DELIM "\\"
#define DIR_DELIM_CHAR '\\'
#define FILESYS_CASE_INSENSITIVE 1
+#define PATH_DELIM ";"
#else // POSIX
#define DIR_DELIM "/"
#define DIR_DELIM_CHAR '/'
#define FILESYS_CASE_INSENSITIVE 0
+#define PATH_DELIM ":"
#endif
namespace fs
@@ -113,6 +115,8 @@ const char *GetFilenameFromPath(const char *path);
bool safeWriteToFile(const std::string &path, const std::string &content);
+bool Rename(const std::string &from, const std::string &to);
+
} // namespace fs
#endif