summaryrefslogtreecommitdiffstats
path: root/src/core/FileMgr.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-07-07 13:09:11 +0200
committeraap <aap@papnet.eu>2019-07-07 13:09:11 +0200
commit53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb (patch)
treefc65a6c40fa719f9d43be9e0e15be79c490135e0 /src/core/FileMgr.h
parentfinished CPhysical (diff)
downloadre3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.gz
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.bz2
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.lz
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.xz
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.zst
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.zip
Diffstat (limited to 'src/core/FileMgr.h')
-rw-r--r--src/core/FileMgr.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/core/FileMgr.h b/src/core/FileMgr.h
new file mode 100644
index 00000000..bab86e38
--- /dev/null
+++ b/src/core/FileMgr.h
@@ -0,0 +1,21 @@
+#pragma once
+
+class CFileMgr
+{
+ static char *ms_rootDirName; //[128];
+ static char *ms_dirName; //[128];
+public:
+ static void Initialise(void);
+ static void ChangeDir(const char *dir);
+ static void SetDir(const char *dir);
+ static void SetDirMyDocuments(void);
+ static int LoadFile(const char *file, uint8 *buf, int unused, const char *mode);
+ static int OpenFile(const char *file, const char *mode);
+ static int OpenFileForWriting(const char *file);
+ static int Read(int fd, char *buf, int len);
+ static int Write(int fd, char *buf, int len);
+ static bool Seek(int fd, int offset, int whence);
+ static bool ReadLine(int fd, char *buf, int len);
+ static int CloseFile(int fd);
+ static int GetErrorReadWrite(int fd);
+};