#include <stdint.h>
#include <stddef.h>
#include <sys/types.h>
#include <retro_common_api.h>
#include <boolean.h>
Go to the source code of this file.
|
void * | intfstream_init (intfstream_info_t *info) |
|
bool | intfstream_resize (intfstream_internal_t *intf, intfstream_info_t *info) |
|
bool | intfstream_open (intfstream_internal_t *intf, const char *path, unsigned mode, unsigned hints) |
|
int64_t | intfstream_read (intfstream_internal_t *intf, void *s, uint64_t len) |
|
int64_t | intfstream_write (intfstream_internal_t *intf, const void *s, uint64_t len) |
|
char * | intfstream_gets (intfstream_internal_t *intf, char *buffer, uint64_t len) |
|
int | intfstream_getc (intfstream_internal_t *intf) |
|
int64_t | intfstream_seek (intfstream_internal_t *intf, int64_t offset, int whence) |
|
void | intfstream_rewind (intfstream_internal_t *intf) |
|
int64_t | intfstream_tell (intfstream_internal_t *intf) |
|
void | intfstream_putc (intfstream_internal_t *intf, int c) |
|
int | intfstream_close (intfstream_internal_t *intf) |
|
int64_t | intfstream_get_size (intfstream_internal_t *intf) |
|
int | intfstream_flush (intfstream_internal_t *intf) |
|
intfstream_t * | intfstream_open_file (const char *path, unsigned mode, unsigned hints) |
|
intfstream_t * | intfstream_open_memory (void *data, unsigned mode, unsigned hints, uint64_t size) |
|
intfstream_t * | intfstream_open_chd_track (const char *path, unsigned mode, unsigned hints, int32_t track) |
|
◆ intfstream_info_t
◆ intfstream_internal_t
◆ intfstream_t
◆ intfstream_type
Enumerator |
---|
INTFSTREAM_FILE | |
INTFSTREAM_MEMORY | |
INTFSTREAM_CHD | |
◆ intfstream_close()
◆ intfstream_flush()
◆ intfstream_get_size()
◆ intfstream_getc()
◆ intfstream_gets()
◆ intfstream_init()
◆ intfstream_open()
◆ intfstream_open_chd_track()
◆ intfstream_open_file()
intfstream_t* intfstream_open_file |
( |
const char * |
path, |
|
|
unsigned |
mode, |
|
|
unsigned |
hints |
|
) |
| |
◆ intfstream_open_memory()
◆ intfstream_putc()
◆ intfstream_read()
◆ intfstream_resize()
◆ intfstream_rewind()
◆ intfstream_seek()
◆ intfstream_tell()
◆ intfstream_write()