1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-12 10:18:31 +00:00
re3/src/core/FileMgr.h

22 lines
731 B
C
Raw Normal View History

2019-05-24 17:58:32 +00:00
#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);
2019-08-16 18:17:15 +00:00
static int Read(int fd, const char *buf, int len);
static int Write(int fd, const char *buf, int len);
2019-05-24 17:58:32 +00:00
static bool Seek(int fd, int offset, int whence);
static bool ReadLine(int fd, char *buf, int len);
static int CloseFile(int fd);
2019-05-24 17:58:32 +00:00
static int GetErrorReadWrite(int fd);
};