#include <stdint.h>
#include <libretro.h>
Go to the source code of this file.
|
libretro_vfs_implementation_file * | retro_vfs_file_open_impl (const char *path, unsigned mode, unsigned hints) |
|
int | retro_vfs_file_close_impl (libretro_vfs_implementation_file *stream) |
|
int | retro_vfs_file_error_impl (libretro_vfs_implementation_file *stream) |
|
int64_t | retro_vfs_file_size_impl (libretro_vfs_implementation_file *stream) |
|
int64_t | retro_vfs_file_truncate_impl (libretro_vfs_implementation_file *stream, int64_t length) |
|
int64_t | retro_vfs_file_tell_impl (libretro_vfs_implementation_file *stream) |
|
int64_t | retro_vfs_file_seek_impl (libretro_vfs_implementation_file *stream, int64_t offset, int seek_position) |
|
int64_t | retro_vfs_file_read_impl (libretro_vfs_implementation_file *stream, void *s, uint64_t len) |
|
int64_t | retro_vfs_file_write_impl (libretro_vfs_implementation_file *stream, const void *s, uint64_t len) |
|
int | retro_vfs_file_flush_impl (libretro_vfs_implementation_file *stream) |
|
int | retro_vfs_file_remove_impl (const char *path) |
|
int | retro_vfs_file_rename_impl (const char *old_path, const char *new_path) |
|
const char * | retro_vfs_file_get_path_impl (libretro_vfs_implementation_file *stream) |
|
◆ libretro_vfs_implementation_file
◆ retro_vfs_file_close_impl()
◆ retro_vfs_file_error_impl()
◆ retro_vfs_file_flush_impl()
◆ retro_vfs_file_get_path_impl()
◆ retro_vfs_file_open_impl()
retro_vfs_file_open_impl: : path to file : file mode to use when opening (read/write) :
Opens a file for reading or writing, depending on the requested mode. Returns a pointer to an RFILE if opened successfully, otherwise NULL.
◆ retro_vfs_file_read_impl()
◆ retro_vfs_file_remove_impl()
int retro_vfs_file_remove_impl |
( |
const char * |
path | ) |
|
◆ retro_vfs_file_rename_impl()
int retro_vfs_file_rename_impl |
( |
const char * |
old_path, |
|
|
const char * |
new_path |
|
) |
| |
◆ retro_vfs_file_seek_impl()
◆ retro_vfs_file_size_impl()
◆ retro_vfs_file_tell_impl()
◆ retro_vfs_file_truncate_impl()
◆ retro_vfs_file_write_impl()