|
ManaPlus
|
Go to the documentation of this file.
22 #ifndef UTILS_VIRTFS_FILEAPI_H
23 #define UTILS_VIRTFS_FILEAPI_H
28 #define FILEHTYPE FILE *const
29 #define FILEMTYPE char *
30 #define FILEHDEFAULT nullptr
31 #define FILEOPEN(path, mode) fopen(path, mode)
32 #define FILECLOSE fclose
33 #define FILESEEK fseek
34 #define FILEOPEN_FLAG_READ "rb"
35 #define FILEOPEN_FLAG_WRITE "wb"
36 #define FILEOPEN_FLAG_APPEND "ab"
38 #define FILEHTYPE const int
40 #define FILEHDEFAULT -1
41 #define FILEOPEN(path, mode) open(path, mode, S_IRUSR | S_IWUSR)
42 #define FILECLOSE close
43 #define FILESEEK lseek
44 #define FILEOPEN_FLAG_READ O_RDONLY
45 #define FILEOPEN_FLAG_WRITE O_WRONLY | O_CREAT | O_TRUNC
46 #define FILEOPEN_FLAG_APPEND O_WRONLY | O_CREAT | O_APPEND