- pSDL_AllocRW
alias pSDL_AllocRW = SDL_RWops* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_FreeRW
alias pSDL_FreeRW = void function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_LoadFile_RW
alias pSDL_LoadFile_RW = void* function(SDL_RWops* context, size_t datasize, int freesrc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RWFromConstMem
alias pSDL_RWFromConstMem = SDL_RWops* function(const(void)* mem, int size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RWFromFP
alias pSDL_RWFromFP = SDL_RWops* function(FILE* ffp, SDL_bool autoclose)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RWFromFile
alias pSDL_RWFromFile = SDL_RWops* function(const(char)* file, const(char)* mode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RWFromMem
alias pSDL_RWFromMem = SDL_RWops* function(void* mem, int size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RWclose
alias pSDL_RWclose = int function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RWread
alias pSDL_RWread = size_t function(SDL_RWops* context, void* ptr, size_t size, size_t maxnum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RWseek
alias pSDL_RWseek = long function(SDL_RWops* context, long offset, int whence)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RWsize
alias pSDL_RWsize = long function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RWtell
alias pSDL_RWtell = long function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RWwrite
alias pSDL_RWwrite = size_t function(SDL_RWops* context, const(void)* ptr, size_t size, size_t num)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_ReadBE16
alias pSDL_ReadBE16 = ushort function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_ReadBE32
alias pSDL_ReadBE32 = uint function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_ReadBE64
alias pSDL_ReadBE64 = ulong function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_ReadLE16
alias pSDL_ReadLE16 = ushort function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_ReadLE32
alias pSDL_ReadLE32 = uint function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_ReadLE64
alias pSDL_ReadLE64 = ulong function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_ReadU8
alias pSDL_ReadU8 = ubyte function(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_WriteBE16
alias pSDL_WriteBE16 = size_t function(SDL_RWops* context, ushort value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_WriteBE32
alias pSDL_WriteBE32 = size_t function(SDL_RWops* context, uint value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_WriteBE64
alias pSDL_WriteBE64 = size_t function(SDL_RWops* context, ulong value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_WriteLE16
alias pSDL_WriteLE16 = size_t function(SDL_RWops* context, ushort value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_WriteLE32
alias pSDL_WriteLE32 = size_t function(SDL_RWops* context, uint value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_WriteLE64
alias pSDL_WriteLE64 = size_t function(SDL_RWops* context, ulong value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_WriteU8
alias pSDL_WriteU8 = size_t function(SDL_RWops* context, ubyte value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_AllocRW
SDL_RWops* SDL_AllocRW()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_FreeRW
void SDL_FreeRW(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_LoadFile
void* SDL_LoadFile(const(char)* filename, size_t datasize)
Undocumented in source. Be warned that the author may not have intended to support it.
- SDL_LoadFile_RW
void* SDL_LoadFile_RW(SDL_RWops* context, size_t datasize, int freesrc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RWFromConstMem
SDL_RWops* SDL_RWFromConstMem(const(void)* mem, int size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RWFromFP
SDL_RWops* SDL_RWFromFP(FILE* ffp, SDL_bool autoclose)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RWFromFile
SDL_RWops* SDL_RWFromFile(const(char)* file, const(char)* mode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RWFromMem
SDL_RWops* SDL_RWFromMem(void* mem, int size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RWclose
int SDL_RWclose(SDL_RWops* ctx)
Undocumented in source. Be warned that the author may not have intended to support it.
- SDL_RWclose
int SDL_RWclose(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RWread
size_t SDL_RWread(SDL_RWops* ctx, void* ptr, size_t size, size_t n)
Undocumented in source. Be warned that the author may not have intended to support it.
- SDL_RWread
size_t SDL_RWread(SDL_RWops* context, void* ptr, size_t size, size_t maxnum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RWseek
long SDL_RWseek(SDL_RWops* ctx, long offset, int whence)
Undocumented in source. Be warned that the author may not have intended to support it.
- SDL_RWseek
long SDL_RWseek(SDL_RWops* context, long offset, int whence)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RWsize
long SDL_RWsize(SDL_RWops* ctx)
Undocumented in source. Be warned that the author may not have intended to support it.
- SDL_RWsize
long SDL_RWsize(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RWtell
long SDL_RWtell(SDL_RWops* ctx)
Undocumented in source. Be warned that the author may not have intended to support it.
- SDL_RWtell
long SDL_RWtell(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RWwrite
size_t SDL_RWwrite(SDL_RWops* ctx, const(void)* ptr, size_t size, size_t n)
Undocumented in source. Be warned that the author may not have intended to support it.
- SDL_RWwrite
size_t SDL_RWwrite(SDL_RWops* context, const(void)* ptr, size_t size, size_t num)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_ReadBE16
ushort SDL_ReadBE16(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_ReadBE32
uint SDL_ReadBE32(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_ReadBE64
ulong SDL_ReadBE64(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_ReadLE16
ushort SDL_ReadLE16(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_ReadLE32
uint SDL_ReadLE32(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_ReadLE64
ulong SDL_ReadLE64(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_ReadU8
ubyte SDL_ReadU8(SDL_RWops* context)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_WriteBE16
size_t SDL_WriteBE16(SDL_RWops* context, ushort value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_WriteBE32
size_t SDL_WriteBE32(SDL_RWops* context, uint value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_WriteBE64
size_t SDL_WriteBE64(SDL_RWops* context, ulong value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_WriteLE16
size_t SDL_WriteLE16(SDL_RWops* context, ushort value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_WriteLE32
size_t SDL_WriteLE32(SDL_RWops* context, uint value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_WriteLE64
size_t SDL_WriteLE64(SDL_RWops* context, ulong value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_WriteU8
size_t SDL_WriteU8(SDL_RWops* context, ubyte value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.