- 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*)
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*, size_t, int)
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)*, int)
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*, SDL_bool)
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)*, const(char)*)
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*, int)
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*)
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*, void*, size_t, size_t)
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*, long, int)
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*)
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*)
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*, const(void)*, size_t, size_t)
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*)
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*)
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*)
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*)
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*)
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*)
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*)
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*, ushort)
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*, uint)
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*, ulong)
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*, ushort)
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*, uint)
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*, ulong)
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*, ubyte)
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* )
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* , size_t , int )
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)* , int )
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* , SDL_bool )
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)* , const(char)* )
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* , int )
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* )
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* , void* , size_t , size_t )
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* , long , int )
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* )
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* )
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* , const(void)* , size_t , size_t )
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* )
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* )
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* )
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* )
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* )
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* )
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* )
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* , ushort )
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* , uint )
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* , ulong )
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* , ushort )
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* , uint )
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* , ulong )
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* , ubyte )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.