bindbc.sdl.bind.sdlrwops

Undocumented in source.

Members

Aliases

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.

Enums

RW_SEEK_SET
anonymousenum RW_SEEK_SET
Undocumented in source.
SDL_RWOPS_UNKNOWN
anonymousenum SDL_RWOPS_UNKNOWN
Undocumented in source.

Functions

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.

Static variables

SDL_AllocRW
pSDL_AllocRW SDL_AllocRW;
Undocumented in source.
SDL_FreeRW
pSDL_FreeRW SDL_FreeRW;
Undocumented in source.
SDL_LoadFile_RW
pSDL_LoadFile_RW SDL_LoadFile_RW;
Undocumented in source.
SDL_RWFromConstMem
pSDL_RWFromConstMem SDL_RWFromConstMem;
Undocumented in source.
SDL_RWFromFP
pSDL_RWFromFP SDL_RWFromFP;
Undocumented in source.
SDL_RWFromFile
pSDL_RWFromFile SDL_RWFromFile;
Undocumented in source.
SDL_RWFromMem
pSDL_RWFromMem SDL_RWFromMem;
Undocumented in source.
SDL_RWclose
pSDL_RWclose SDL_RWclose;
Undocumented in source.
SDL_RWread
pSDL_RWread SDL_RWread;
Undocumented in source.
SDL_RWseek
pSDL_RWseek SDL_RWseek;
Undocumented in source.
SDL_RWsize
pSDL_RWsize SDL_RWsize;
Undocumented in source.
SDL_RWtell
pSDL_RWtell SDL_RWtell;
Undocumented in source.
SDL_RWwrite
pSDL_RWwrite SDL_RWwrite;
Undocumented in source.
SDL_ReadBE16
pSDL_ReadBE16 SDL_ReadBE16;
Undocumented in source.
SDL_ReadBE32
pSDL_ReadBE32 SDL_ReadBE32;
Undocumented in source.
SDL_ReadBE64
pSDL_ReadBE64 SDL_ReadBE64;
Undocumented in source.
SDL_ReadLE16
pSDL_ReadLE16 SDL_ReadLE16;
Undocumented in source.
SDL_ReadLE32
pSDL_ReadLE32 SDL_ReadLE32;
Undocumented in source.
SDL_ReadLE64
pSDL_ReadLE64 SDL_ReadLE64;
Undocumented in source.
SDL_ReadU8
pSDL_ReadU8 SDL_ReadU8;
Undocumented in source.
SDL_WriteBE16
pSDL_WriteBE16 SDL_WriteBE16;
Undocumented in source.
SDL_WriteBE32
pSDL_WriteBE32 SDL_WriteBE32;
Undocumented in source.
SDL_WriteBE64
pSDL_WriteBE64 SDL_WriteBE64;
Undocumented in source.
SDL_WriteLE16
pSDL_WriteLE16 SDL_WriteLE16;
Undocumented in source.
SDL_WriteLE32
pSDL_WriteLE32 SDL_WriteLE32;
Undocumented in source.
SDL_WriteLE64
pSDL_WriteLE64 SDL_WriteLE64;
Undocumented in source.
SDL_WriteU8
pSDL_WriteU8 SDL_WriteU8;
Undocumented in source.

Structs

SDL_RWops
struct SDL_RWops
Undocumented in source.

Meta