1 /* Copyright  (C) 2010-2020 The RetroArch team
2  *
3  * ---------------------------------------------------------------------------------------
4  * The following license statement only applies to this file (vfs_implementation_cdrom.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 
23 #ifndef __LIBRETRO_SDK_VFS_IMPLEMENTATION_CDROM_H
24 #define __LIBRETRO_SDK_VFS_IMPLEMENTATION_CDROM_H
25 
26 #include <vfs/vfs.h>
27 #include <cdrom/cdrom.h>
28 
29 RETRO_BEGIN_DECLS
30 
31 int64_t retro_vfs_file_seek_cdrom(libretro_vfs_implementation_file *stream, int64_t offset, int whence);
32 
33 void retro_vfs_file_open_cdrom(
34       libretro_vfs_implementation_file *stream,
35       const char *path, unsigned mode, unsigned hints);
36 
37 int retro_vfs_file_close_cdrom(libretro_vfs_implementation_file *stream);
38 
39 int64_t retro_vfs_file_tell_cdrom(libretro_vfs_implementation_file *stream);
40 
41 int64_t retro_vfs_file_read_cdrom(libretro_vfs_implementation_file *stream,
42       void *s, uint64_t len);
43 
44 int retro_vfs_file_error_cdrom(libretro_vfs_implementation_file *stream);
45 
46 const cdrom_toc_t* retro_vfs_file_get_cdrom_toc(void);
47 
48 const vfs_cdrom_t* retro_vfs_file_get_cdrom_position(const libretro_vfs_implementation_file *stream);
49 
50 RETRO_END_DECLS
51 
52 #endif
53