bindbc.sdl.net

Undocumented in source.

Members

Aliases

SDLNet_GenericSocket
alias SDLNet_GenericSocket = _SDLNet_GenericSocket*
Undocumented in source.
SDLNet_SocketSet
alias SDLNet_SocketSet = _SDLNet_SocketSet*
Undocumented in source.
SDLNet_UDP_AddSocket
alias SDLNet_UDP_AddSocket = SDLNet_TCP_AddSocket
Undocumented in source.
SDLNet_UDP_DelSocket
alias SDLNet_UDP_DelSocket = SDLNet_TCP_DelSocket
Undocumented in source.
SDLNet_Version
alias SDLNet_Version = SDL_version
Undocumented in source.
TCPsocket
alias TCPsocket = void*
Undocumented in source.
UDPsocket
alias UDPsocket = void*
Undocumented in source.
pSDLNet_AddSocket
alias pSDLNet_AddSocket = int function(SDLNet_SocketSet set, SDLNet_GenericSocket sock)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_AllocPacket
alias pSDLNet_AllocPacket = UDPpacket* function(int size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_AllocPacketV
alias pSDLNet_AllocPacketV = UDPpacket** function(int howmany, int size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_AllocSocketSet
alias pSDLNet_AllocSocketSet = SDLNet_SocketSet function(int maxsockets)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_CheckSockets
alias pSDLNet_CheckSockets = int function(SDLNet_SocketSet set, uint timeout)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_DelSocket
alias pSDLNet_DelSocket = int function(SDLNet_SocketSet set, SDLNet_GenericSocket sock)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_FreePacket
alias pSDLNet_FreePacket = void function(UDPpacket* packet)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_FreePacketV
alias pSDLNet_FreePacketV = void function(UDPpacket** packetV)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_FreeSocketSet
alias pSDLNet_FreeSocketSet = void function(SDLNet_SocketSet set)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_GetError
alias pSDLNet_GetError = const(char)* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_GetLocalAddresses
alias pSDLNet_GetLocalAddresses = int function(IPaddress* addresses, int maxcount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_Init
alias pSDLNet_Init = int function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_Linked_Version
alias pSDLNet_Linked_Version = const(SDLNet_Version)* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_Quit
alias pSDLNet_Quit = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_ResizePacket
alias pSDLNet_ResizePacket = int function(UDPpacket* packet, int newsize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_ResolveHost
alias pSDLNet_ResolveHost = int function(IPaddress* address, const(char)* host, ushort port)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_ResolveIP
alias pSDLNet_ResolveIP = const(char)* function(const(IPaddress)* ip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_SetError
alias pSDLNet_SetError = void function(const(char)* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_TCP_Accept
alias pSDLNet_TCP_Accept = TCPsocket function(TCPsocket server)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_TCP_Close
alias pSDLNet_TCP_Close = void function(TCPsocket sock)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_TCP_GetPeerAddress
alias pSDLNet_TCP_GetPeerAddress = IPaddress* function(TCPsocket sock)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_TCP_Open
alias pSDLNet_TCP_Open = TCPsocket function(IPaddress* ip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_TCP_Recv
alias pSDLNet_TCP_Recv = int function(TCPsocket sock, void* data, int len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_TCP_Send
alias pSDLNet_TCP_Send = int function(TCPsocket sock, const(void)* data, int len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_UDP_Bind
alias pSDLNet_UDP_Bind = int function(UDPsocket sock, int channel, const(IPaddress)* address)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_UDP_Close
alias pSDLNet_UDP_Close = void function(UDPsocket sock)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_UDP_GetPeerAddress
alias pSDLNet_UDP_GetPeerAddress = IPaddress* function(UDPsocket sock, int channel)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_UDP_Open
alias pSDLNet_UDP_Open = UDPsocket function(ushort port)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_UDP_Recv
alias pSDLNet_UDP_Recv = int function(UDPsocket sock, UDPpacket* packet)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_UDP_RecvV
alias pSDLNet_UDP_RecvV = int function(UDPsocket sock, UDPpacket** packets)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_UDP_Send
alias pSDLNet_UDP_Send = int function(UDPsocket sock, int channel, UDPpacket* packet)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_UDP_SendV
alias pSDLNet_UDP_SendV = int function(UDPsocket sock, UDPpacket** packets, int npackets)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_UDP_SetPacketLoss
alias pSDLNet_UDP_SetPacketLoss = void function(UDPsocket sock, int percent)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDLNet_UDP_Unbind
alias pSDLNet_UDP_Unbind = void function(UDPsocket sock, int channel)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

INADDR_ANY
anonymousenum INADDR_ANY
Undocumented in source.
SDLNetSupport
enum SDLNetSupport
Undocumented in source.

Functions

SDLNet_AddSocket
int SDLNet_AddSocket(SDLNet_SocketSet set, SDLNet_GenericSocket sock)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_AllocPacket
UDPpacket* SDLNet_AllocPacket(int size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_AllocPacketV
UDPpacket** SDLNet_AllocPacketV(int howmany, int size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_AllocSocketSet
SDLNet_SocketSet SDLNet_AllocSocketSet(int maxsockets)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_CheckSockets
int SDLNet_CheckSockets(SDLNet_SocketSet set, uint timeout)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_DelSocket
int SDLNet_DelSocket(SDLNet_SocketSet set, SDLNet_GenericSocket sock)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_FreePacket
void SDLNet_FreePacket(UDPpacket* packet)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_FreePacketV
void SDLNet_FreePacketV(UDPpacket** packetV)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_FreeSocketSet
void SDLNet_FreeSocketSet(SDLNet_SocketSet set)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_GetError
const(char)* SDLNet_GetError()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_GetLocalAddresses
int SDLNet_GetLocalAddresses(IPaddress* addresses, int maxcount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_Init
int SDLNet_Init()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_Linked_Version
const(SDLNet_Version)* SDLNet_Linked_Version()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_Quit
void SDLNet_Quit()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_ResizePacket
int SDLNet_ResizePacket(UDPpacket* packet, int newsize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_ResolveHost
int SDLNet_ResolveHost(IPaddress* address, const(char)* host, ushort port)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_ResolveIP
const(char)* SDLNet_ResolveIP(const(IPaddress)* ip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_SetError
void SDLNet_SetError(const(char)* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_SocketReady
bool SDLNet_SocketReady(void* sock)
Undocumented in source. Be warned that the author may not have intended to support it.
SDLNet_TCP_Accept
TCPsocket SDLNet_TCP_Accept(TCPsocket server)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_TCP_AddSocket
int SDLNet_TCP_AddSocket(SDLNet_SocketSet set, void* sock)
Undocumented in source. Be warned that the author may not have intended to support it.
SDLNet_TCP_Close
void SDLNet_TCP_Close(TCPsocket sock)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_TCP_DelSocket
int SDLNet_TCP_DelSocket(SDLNet_SocketSet set, void* sock)
Undocumented in source. Be warned that the author may not have intended to support it.
SDLNet_TCP_GetPeerAddress
IPaddress* SDLNet_TCP_GetPeerAddress(TCPsocket sock)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_TCP_Open
TCPsocket SDLNet_TCP_Open(IPaddress* ip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_TCP_Recv
int SDLNet_TCP_Recv(TCPsocket sock, void* data, int len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_TCP_Send
int SDLNet_TCP_Send(TCPsocket sock, const(void)* data, int len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_UDP_Bind
int SDLNet_UDP_Bind(UDPsocket sock, int channel, const(IPaddress)* address)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_UDP_Close
void SDLNet_UDP_Close(UDPsocket sock)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_UDP_GetPeerAddress
IPaddress* SDLNet_UDP_GetPeerAddress(UDPsocket sock, int channel)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_UDP_Open
UDPsocket SDLNet_UDP_Open(ushort port)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_UDP_Recv
int SDLNet_UDP_Recv(UDPsocket sock, UDPpacket* packet)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_UDP_RecvV
int SDLNet_UDP_RecvV(UDPsocket sock, UDPpacket** packets)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_UDP_Send
int SDLNet_UDP_Send(UDPsocket sock, int channel, UDPpacket* packet)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_UDP_SendV
int SDLNet_UDP_SendV(UDPsocket sock, UDPpacket** packets, int npackets)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_UDP_SetPacketLoss
void SDLNet_UDP_SetPacketLoss(UDPsocket sock, int percent)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDLNet_UDP_Unbind
void SDLNet_UDP_Unbind(UDPsocket sock, int channel)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_NET_VERSION
void SDL_NET_VERSION(SDL_version* X)
Undocumented in source. Be warned that the author may not have intended to support it.
isSDLNetLoaded
bool isSDLNetLoaded()
Undocumented in source. Be warned that the author may not have intended to support it.
loadSDLNet
SDLNetSupport loadSDLNet(const(char)* libName)
Undocumented in source. Be warned that the author may not have intended to support it.
loadSDLNet
SDLNetSupport loadSDLNet()
Undocumented in source. Be warned that the author may not have intended to support it.
loadedSDLNetVersion
SDLNetSupport loadedSDLNetVersion()
Undocumented in source. Be warned that the author may not have intended to support it.
unloadSDLNet
void unloadSDLNet()
Undocumented in source. Be warned that the author may not have intended to support it.

Manifest constants

SDLNET_MAX_UDPADRESSES
enum SDLNET_MAX_UDPADRESSES;
Undocumented in source.
SDLNET_MAX_UDPCHANNELS
enum SDLNET_MAX_UDPCHANNELS;
Undocumented in source.
SDL_NET_PATCHLEVEL
enum SDL_NET_PATCHLEVEL;
Undocumented in source.
SDL_NET_PATCHLEVEL
enum SDL_NET_PATCHLEVEL;
Undocumented in source.
sdlNetSupport
enum sdlNetSupport;
Undocumented in source.
sdlNetSupport
enum sdlNetSupport;
Undocumented in source.

Static variables

SDLNet_AddSocket
pSDLNet_AddSocket SDLNet_AddSocket;
Undocumented in source.
SDLNet_AllocPacket
pSDLNet_AllocPacket SDLNet_AllocPacket;
Undocumented in source.
SDLNet_AllocPacketV
pSDLNet_AllocPacketV SDLNet_AllocPacketV;
Undocumented in source.
SDLNet_AllocSocketSet
pSDLNet_AllocSocketSet SDLNet_AllocSocketSet;
Undocumented in source.
SDLNet_CheckSockets
pSDLNet_CheckSockets SDLNet_CheckSockets;
Undocumented in source.
SDLNet_DelSocket
pSDLNet_DelSocket SDLNet_DelSocket;
Undocumented in source.
SDLNet_FreePacket
pSDLNet_FreePacket SDLNet_FreePacket;
Undocumented in source.
SDLNet_FreePacketV
pSDLNet_FreePacketV SDLNet_FreePacketV;
Undocumented in source.
SDLNet_FreeSocketSet
pSDLNet_FreeSocketSet SDLNet_FreeSocketSet;
Undocumented in source.
SDLNet_GetError
pSDLNet_GetError SDLNet_GetError;
Undocumented in source.
SDLNet_GetLocalAddresses
pSDLNet_GetLocalAddresses SDLNet_GetLocalAddresses;
Undocumented in source.
SDLNet_Init
pSDLNet_Init SDLNet_Init;
Undocumented in source.
SDLNet_Linked_Version
pSDLNet_Linked_Version SDLNet_Linked_Version;
Undocumented in source.
SDLNet_Quit
pSDLNet_Quit SDLNet_Quit;
Undocumented in source.
SDLNet_ResizePacket
pSDLNet_ResizePacket SDLNet_ResizePacket;
Undocumented in source.
SDLNet_ResolveHost
pSDLNet_ResolveHost SDLNet_ResolveHost;
Undocumented in source.
SDLNet_ResolveIP
pSDLNet_ResolveIP SDLNet_ResolveIP;
Undocumented in source.
SDLNet_SetError
pSDLNet_SetError SDLNet_SetError;
Undocumented in source.
SDLNet_TCP_Accept
pSDLNet_TCP_Accept SDLNet_TCP_Accept;
Undocumented in source.
SDLNet_TCP_Close
pSDLNet_TCP_Close SDLNet_TCP_Close;
Undocumented in source.
SDLNet_TCP_GetPeerAddress
pSDLNet_TCP_GetPeerAddress SDLNet_TCP_GetPeerAddress;
Undocumented in source.
SDLNet_TCP_Open
pSDLNet_TCP_Open SDLNet_TCP_Open;
Undocumented in source.
SDLNet_TCP_Recv
pSDLNet_TCP_Recv SDLNet_TCP_Recv;
Undocumented in source.
SDLNet_TCP_Send
pSDLNet_TCP_Send SDLNet_TCP_Send;
Undocumented in source.
SDLNet_UDP_Bind
pSDLNet_UDP_Bind SDLNet_UDP_Bind;
Undocumented in source.
SDLNet_UDP_Close
pSDLNet_UDP_Close SDLNet_UDP_Close;
Undocumented in source.
SDLNet_UDP_GetPeerAddress
pSDLNet_UDP_GetPeerAddress SDLNet_UDP_GetPeerAddress;
Undocumented in source.
SDLNet_UDP_Open
pSDLNet_UDP_Open SDLNet_UDP_Open;
Undocumented in source.
SDLNet_UDP_Recv
pSDLNet_UDP_Recv SDLNet_UDP_Recv;
Undocumented in source.
SDLNet_UDP_RecvV
pSDLNet_UDP_RecvV SDLNet_UDP_RecvV;
Undocumented in source.
SDLNet_UDP_Send
pSDLNet_UDP_Send SDLNet_UDP_Send;
Undocumented in source.
SDLNet_UDP_SendV
pSDLNet_UDP_SendV SDLNet_UDP_SendV;
Undocumented in source.
SDLNet_UDP_SetPacketLoss
pSDLNet_UDP_SetPacketLoss SDLNet_UDP_SetPacketLoss;
Undocumented in source.
SDLNet_UDP_Unbind
pSDLNet_UDP_Unbind SDLNet_UDP_Unbind;
Undocumented in source.

Structs

IPaddress
struct IPaddress
Undocumented in source.
UDPpacket
struct UDPpacket
Undocumented in source.
_SDLNet_GenericSocket
struct _SDLNet_GenericSocket
Undocumented in source.
_SDLNet_SocketSet
struct _SDLNet_SocketSet
Undocumented in source.

Variables

SDL_NET_MAJOR_VERSION
enum ubyte SDL_NET_MAJOR_VERSION;
Undocumented in source.
SDL_NET_MINOR_VERSION
enum ubyte SDL_NET_MINOR_VERSION;
Undocumented in source.

Meta