Implement data log

This commit is contained in:
jomjol
2022-10-19 22:08:02 +02:00
parent 3be33820d9
commit 8d4fb74173
5 changed files with 69 additions and 60 deletions

View File

@@ -12,6 +12,8 @@ void FindReplace(std::string& line, std::string& oldString, std::string& newStri
void CopyFile(string input, string output);
void DeleteFile(string fn);
void RenameFile(string from, string to);
void MakeDir(std::string _what);
FILE* OpenFileAndWait(const char* nm, const char* _mode, int _waitsec = 1);