Move RFILE_HINT_UNBUFFERED to file_stream.c

This commit is contained in:
twinaphex 2017-12-11 11:47:13 +01:00
parent e1461cc0de
commit 93ee4df5f5
2 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,6 @@ RETRO_BEGIN_DECLS
typedef struct RFILE RFILE;
#define RFILE_HINT_NONE (0)
/* There is no guarantee these requests will be attended. */
#define RFILE_HINT_UNBUFFERED (1 << 8)
/* requires RFILE_MODE_READ */
#define RFILE_HINT_MMAP (1 << 9)

View File

@ -74,6 +74,8 @@
#endif
#define RFILE_HINT_UNBUFFERED (1 << 8)
#include <streams/file_stream.h>
#include <string/stdstring.h>
#include <memmap.h>