vfs_implementation.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* Copyright (C) 2010-2019 The RetroArch team
  2. *
  3. * ---------------------------------------------------------------------------------------
  4. * The following license statement only applies to this file (vfs_implementation.h).
  5. * ---------------------------------------------------------------------------------------
  6. *
  7. * Permission is hereby granted, free of charge,
  8. * to any person obtaining a copy of this software and associated documentation files (the "Software"),
  9. * to deal in the Software without restriction, including without limitation the rights to
  10. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
  11. * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  16. * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  18. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  19. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  21. */
  22. #ifndef __LIBRETRO_SDK_VFS_IMPLEMENTATION_H
  23. #define __LIBRETRO_SDK_VFS_IMPLEMENTATION_H
  24. #include <stdio.h>
  25. #include <stdint.h>
  26. #include <libretro.h>
  27. #include <retro_environment.h>
  28. #include <vfs/vfs.h>
  29. RETRO_BEGIN_DECLS
  30. libretro_vfs_implementation_file *retro_vfs_file_open_impl(const char *path, unsigned mode, unsigned hints);
  31. int retro_vfs_file_close_impl(libretro_vfs_implementation_file *stream);
  32. int retro_vfs_file_error_impl(libretro_vfs_implementation_file *stream);
  33. int64_t retro_vfs_file_size_impl(libretro_vfs_implementation_file *stream);
  34. int64_t retro_vfs_file_truncate_impl(libretro_vfs_implementation_file *stream, int64_t length);
  35. int64_t retro_vfs_file_tell_impl(libretro_vfs_implementation_file *stream);
  36. int64_t retro_vfs_file_seek_impl(libretro_vfs_implementation_file *stream, int64_t offset, int seek_position);
  37. int64_t retro_vfs_file_read_impl(libretro_vfs_implementation_file *stream, void *s, uint64_t len);
  38. int64_t retro_vfs_file_write_impl(libretro_vfs_implementation_file *stream, const void *s, uint64_t len);
  39. int retro_vfs_file_flush_impl(libretro_vfs_implementation_file *stream);
  40. int retro_vfs_file_remove_impl(const char *path);
  41. int retro_vfs_file_rename_impl(const char *old_path, const char *new_path);
  42. const char *retro_vfs_file_get_path_impl(libretro_vfs_implementation_file *stream);
  43. int retro_vfs_stat_impl(const char *path, int32_t *size);
  44. int retro_vfs_mkdir_impl(const char *dir);
  45. libretro_vfs_implementation_dir *retro_vfs_opendir_impl(const char *dir, bool include_hidden);
  46. bool retro_vfs_readdir_impl(libretro_vfs_implementation_dir *dirstream);
  47. const char *retro_vfs_dirent_get_name_impl(libretro_vfs_implementation_dir *dirstream);
  48. bool retro_vfs_dirent_is_dir_impl(libretro_vfs_implementation_dir *dirstream);
  49. int retro_vfs_closedir_impl(libretro_vfs_implementation_dir *dirstream);
  50. RETRO_END_DECLS
  51. #endif