rwops_zlib: remove unused API
This commit is contained in:
parent
a60a1e270b
commit
248b96e95d
3 changed files with 3 additions and 8 deletions
|
@ -10,6 +10,7 @@
|
|||
|
||||
#include <locale.h>
|
||||
#include <png.h>
|
||||
#include <zlib.h>
|
||||
|
||||
#include "global.h"
|
||||
#include "video.h"
|
||||
|
|
|
@ -318,7 +318,3 @@ SDL_RWops* SDL_RWWrapZWriter(SDL_RWops *src, size_t bufsize, bool autoclose) {
|
|||
|
||||
return rw;
|
||||
}
|
||||
|
||||
z_stream* SDL_RWGetZStream(SDL_RWops *rw) {
|
||||
return ZDATA(rw)->stream;
|
||||
}
|
||||
|
|
|
@ -12,10 +12,8 @@
|
|||
#include "taisei.h"
|
||||
|
||||
#include <SDL.h>
|
||||
#include <zlib.h>
|
||||
|
||||
SDL_RWops* SDL_RWWrapZReader(SDL_RWops *src, size_t bufsize, bool autoclose);
|
||||
SDL_RWops* SDL_RWWrapZWriter(SDL_RWops *src, size_t bufsize, bool autoclose);
|
||||
z_stream* SDL_RWGetZStream(SDL_RWops *src);
|
||||
SDL_RWops *SDL_RWWrapZReader(SDL_RWops *src, size_t bufsize, bool autoclose);
|
||||
SDL_RWops *SDL_RWWrapZWriter(SDL_RWops *src, size_t bufsize, bool autoclose);
|
||||
|
||||
#endif // IGUARD_rwops_rwops_zlib_h
|
||||
|
|
Loading…
Reference in a new issue