|
| int64_t | intfstream_get_size (intfstream_internal_t *intf) |
| |
| 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) |
| |
| int | intfstream_flush (intfstream_internal_t *intf) |
| |
| int | intfstream_close (intfstream_internal_t *intf) |
| |
| void * | intfstream_init (intfstream_info_t *info) |
| |
| int64_t | intfstream_seek (intfstream_internal_t *intf, int64_t offset, int whence) |
| |
| 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_tell (intfstream_internal_t *intf) |
| |
| void | intfstream_rewind (intfstream_internal_t *intf) |
| |
| void | intfstream_putc (intfstream_internal_t *intf, int c) |
| |
| 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) |
| |