WIP: Vibra support
[neverball] / share / fs_rwops.h
1 #ifndef FS_RWOPS_H
2 #define FS_RWOPS_H
3
4 #include <SDL_rwops.h>
5 #include "fs.h"
6
7 SDL_RWops *fs_rwops_make(fs_file);
8 SDL_RWops *fs_rwops_open(const char *path, const char *mode);
9
10 #endif