diff options
author | Rechi <Rechi@users.noreply.github.com> | 2018-07-16 13:00:00 +0200 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2018-07-16 13:00:00 +0200 |
commit | c1e760e1ee60cc1c6bd27c141a9c2072402e5d59 (patch) | |
tree | b4182e843b8529f952cf1c8f474b0ee793743731 /lib | |
parent | c09bb94b883e4e4bebc295822e8ece466793bc88 (diff) |
move libbluray filesystem callbacks to seperate class
Diffstat (limited to 'lib')
-rw-r--r-- | lib/DllLibbluray.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/DllLibbluray.h b/lib/DllLibbluray.h index 247aea2c11..bfeee26252 100644 --- a/lib/DllLibbluray.h +++ b/lib/DllLibbluray.h @@ -192,17 +192,4 @@ class DllLibbluray : public DllDynamic, DllLibblurayInterface RESOLVE_METHOD(bd_mouse_select) RESOLVE_METHOD(bd_get_sound_effect) END_METHOD_RESOLVE() - -public: - static void file_close(BD_FILE_H *file); - static int64_t file_seek(BD_FILE_H *file, int64_t offset, int32_t origin); - static int64_t file_tell(BD_FILE_H *file); - static int file_eof(BD_FILE_H *file); - static int64_t file_read(BD_FILE_H *file, uint8_t *buf, int64_t size); - static int64_t file_write(BD_FILE_H *file, const uint8_t *buf, int64_t size); - static void dir_close(BD_DIR_H *dir); - static int dir_read(BD_DIR_H *dir, BD_DIRENT *entry); - static BD_FILE_H *file_open(void * handle, const char * rel_path); - static BD_DIR_H *dir_open(void * handle, const char * rel_path); - static void bluray_logger(const char* msg); }; |