summaryrefslogtreecommitdiff
path: root/NativeLauncher/inc/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'NativeLauncher/inc/utils.h')
-rwxr-xr-xNativeLauncher/inc/utils.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/NativeLauncher/inc/utils.h b/NativeLauncher/inc/utils.h
index b66a708..59774cb 100755
--- a/NativeLauncher/inc/utils.h
+++ b/NativeLauncher/inc/utils.h
@@ -20,6 +20,7 @@
#include <string>
#include <vector>
#include <functional>
+#include <map>
#ifndef PATH_SEPARATOR
#define PATH_SEPARATOR '/'
@@ -36,9 +37,10 @@ std::string AbsolutePath (const std::string& path);
std::string Basename (const std::string& path);
bool EndWithIgnoreCase (const std::string& str1, const std::string& str2, std::string& filename);
void AssembliesInDirectory(const std::vector<std::string>& directories, std::string& tpaList);
+
bool FileNotExist(const std::string& path);
std::string JoinStrings(const std::vector<std::string>& strings, const char* const delimeter);
-typedef std::function<void (const char*)> FileReader;
+typedef std::function<void (const char*, const char*)> FileReader;
void ScanFilesInDir(const char* directory, FileReader reader, unsigned int depth);
#endif // __UTILS_H__