diff options
author | aap <aap@papnet.eu> | 2019-05-24 19:58:32 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-05-24 19:58:32 +0200 |
commit | 886633293dfb73360395a6acc20acb280620fb3f (patch) | |
tree | 3258e44cfd389db3cb8e3f145042662aed3b7ed8 /src/FileMgr.h | |
parent | updated README (diff) | |
download | re3-886633293dfb73360395a6acc20acb280620fb3f.tar re3-886633293dfb73360395a6acc20acb280620fb3f.tar.gz re3-886633293dfb73360395a6acc20acb280620fb3f.tar.bz2 re3-886633293dfb73360395a6acc20acb280620fb3f.tar.lz re3-886633293dfb73360395a6acc20acb280620fb3f.tar.xz re3-886633293dfb73360395a6acc20acb280620fb3f.tar.zst re3-886633293dfb73360395a6acc20acb280620fb3f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/FileMgr.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/FileMgr.h b/src/FileMgr.h new file mode 100644 index 00000000..a77ae6fa --- /dev/null +++ b/src/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 char *ReadLine(int fd, char *buf, int len); + static void CloseFile(int fd); + static int GetErrorReadWrite(int fd); +}; |