Fix score loader improperly reading player names with spaces
[neverball] / share / fs_ov.h
1 #ifndef FS_OV
2 #define FS_OV
3
4 #include <vorbis/vorbisfile.h>
5
6 size_t fs_ov_read(void *ptr, size_t size, size_t nmemb, void *datasource);
7 int    fs_ov_seek(void *datasource, ogg_int64_t offset, int whence);
8 int    fs_ov_close(void *datasource);
9 long   fs_ov_tell(void *datasource);
10
11 #endif