diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2020-12-21 21:26:32 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2020-12-25 10:54:41 +0100 |
commit | a50244dc16085a49f4949cf75f6220320480cebd (patch) | |
tree | 34a022c699eed9c8651ddbe8391c985753e46b2b /src/core/FileMgr.h | |
parent | Merge branch 'miami' of github.com:GTAmodding/re3 into miami (diff) | |
download | re3-a50244dc16085a49f4949cf75f6220320480cebd.tar re3-a50244dc16085a49f4949cf75f6220320480cebd.tar.gz re3-a50244dc16085a49f4949cf75f6220320480cebd.tar.bz2 re3-a50244dc16085a49f4949cf75f6220320480cebd.tar.lz re3-a50244dc16085a49f4949cf75f6220320480cebd.tar.xz re3-a50244dc16085a49f4949cf75f6220320480cebd.tar.zst re3-a50244dc16085a49f4949cf75f6220320480cebd.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/FileMgr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/FileMgr.h b/src/core/FileMgr.h index 8278953b..98a78360 100644 --- a/src/core/FileMgr.h +++ b/src/core/FileMgr.h @@ -9,12 +9,12 @@ public: static void ChangeDir(const char *dir); static void SetDir(const char *dir); static void SetDirMyDocuments(void); - static size_t LoadFile(const char *file, uint8 *buf, int unused, const char *mode); + static ssize_t LoadFile(const char *file, uint8 *buf, int unused, const char *mode); static int OpenFile(const char *file, const char *mode); static int OpenFile(const char *file) { return OpenFile(file, "rb"); } static int OpenFileForWriting(const char *file); - static size_t Read(int fd, const char *buf, size_t len); - static size_t Write(int fd, const char *buf, size_t len); + static size_t Read(int fd, const char *buf, ssize_t len); + static size_t Write(int fd, const char *buf, ssize_t len); static bool Seek(int fd, int offset, int whence); static bool ReadLine(int fd, char *buf, int len); static int CloseFile(int fd); |