taisei/src/rwops/rwops_segment.h
2017-02-23 06:04:42 +02:00

10 lines
177 B
C

#ifndef RWSEGMENT_H
#define RWSEGMENT_H
#include <SDL.h>
#include <stdbool.h>
SDL_RWops* SDL_RWWrapSegment(SDL_RWops *src, size_t start, size_t end, bool autoclose);
#endif