74 lines
2.5 KiB
C
Raw Normal View History

2016-03-20 16:29:14 +01:00
/* Copyright (C) 2010-2016 The RetroArch team
*
* ---------------------------------------------------------------------------------------
2016-03-20 16:29:14 +01:00
* The following license statement only applies to this file (file_stream.h).
* ---------------------------------------------------------------------------------------
*
* Permission is hereby granted, free of charge,
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
2016-03-20 16:29:14 +01:00
#ifndef __LIBRETRO_SDK_FILE_STREAM_H
#define __LIBRETRO_SDK_FILE_STREAM_H
#include <stdint.h>
#include <stddef.h>
#include <sys/types.h>
2016-04-23 10:40:46 +02:00
#include <retro_common_api.h>
2015-09-17 20:24:49 +02:00
#include <boolean.h>
2016-04-23 10:40:46 +02:00
RETRO_BEGIN_DECLS
typedef struct RFILE RFILE;
enum
{
RFILE_MODE_READ = 0,
RFILE_MODE_WRITE,
RFILE_MODE_READ_WRITE,
/* There is no garantee these requests will be attended. */
RFILE_HINT_UNBUFFERED = 1<<8,
2015-11-14 14:56:00 -03:00
RFILE_HINT_MMAP = 1<<9 /* requires RFILE_MODE_READ */
};
2016-03-24 04:23:17 +01:00
RFILE *filestream_open(const char *path, unsigned mode, ssize_t len);
2016-03-24 04:23:17 +01:00
ssize_t filestream_seek(RFILE *stream, ssize_t offset, int whence);
2016-03-24 04:23:17 +01:00
ssize_t filestream_read(RFILE *stream, void *data, size_t len);
2016-03-24 04:23:17 +01:00
ssize_t filestream_write(RFILE *stream, const void *data, size_t len);
2016-03-24 04:23:17 +01:00
ssize_t filestream_tell(RFILE *stream);
2016-03-24 04:23:17 +01:00
void filestream_rewind(RFILE *stream);
2016-03-24 04:23:17 +01:00
int filestream_close(RFILE *stream);
2016-03-24 04:09:25 +01:00
int filestream_read_file(const char *path, void **buf, ssize_t *len);
2016-03-24 04:09:25 +01:00
bool filestream_write_file(const char *path, const void *data, ssize_t size);
2015-09-19 00:34:24 +02:00
2016-04-07 03:23:01 +02:00
int filestream_putc(RFILE *stream, int c);
2016-03-24 04:09:25 +01:00
int filestream_get_fd(RFILE *stream);
2016-04-23 10:40:46 +02:00
RETRO_END_DECLS
#endif