Searched defs:SDL_RWops (Results 1 - 1 of 1) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_rwops.h42 typedef struct SDL_RWops { struct
47 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence);
53 int (SDLCALL *read)(struct SDL_RWops *context, void *ptr, int size, int maxnum);
59 int (SDLCALL *write)(struct SDL_RWops *context, const void *ptr, int size, int num);
62 int (SDLCALL *close)(struct SDL_RWops *context);
93 } SDL_RWops; typedef in typeref:struct:SDL_RWops
96 /** @name Functions to create SDL_RWops structures from various data sources */
99 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFile(const char *file, const char *mode);
102 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFP(FILE *fp, int autoclose);
105 extern DECLSPEC SDL_RWops * SDLCAL
[all...]

Completed in 67 milliseconds