bindbc.sdl.bind.sdlthread

Undocumented in source.

Members

Aliases

SDL_TLSID
alias SDL_TLSID = uint
Undocumented in source.
SDL_ThreadFunction
alias SDL_ThreadFunction = int function(void*)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_threadID
alias SDL_threadID = c_ulong
Undocumented in source.
TLSDestructor
alias TLSDestructor = void function(void*)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_CreateThread
alias pSDL_CreateThread = SDL_Thread* function(SDL_ThreadFunction fn, const(char)* name, void* data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_CreateThread
alias pSDL_CreateThread = SDL_Thread* function(SDL_ThreadFunction fn, const(char)* name, void* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_CreateThreadWithStackSize
alias pSDL_CreateThreadWithStackSize = SDL_Thread* function(SDL_ThreadFunction fn, const(char)* name, const(size_t) stacksize, void* data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_CreateThreadWithStackSize
alias pSDL_CreateThreadWithStackSize = SDL_Thread* function(SDL_ThreadFunction fn, const(char)* name, const(size_t) stacksize, void* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_DetachThread
alias pSDL_DetachThread = void function(SDL_Thread* thread)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_GetThreadID
alias pSDL_GetThreadID = SDL_threadID function(SDL_Thread* thread)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_GetThreadName
alias pSDL_GetThreadName = const(char)* function(SDL_Thread* thread)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_SetThreadPriority
alias pSDL_SetThreadPriority = int function(SDL_ThreadPriority priority)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_TLSCreate
alias pSDL_TLSCreate = SDL_TLSID function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_TLSGet
alias pSDL_TLSGet = void* function(SDL_TLSID id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_TLSSet
alias pSDL_TLSSet = int function(SDL_TLSID id, const(void)* value, TLSDestructor destructor)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_ThreadID
alias pSDL_ThreadID = SDL_threadID function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pSDL_WaitThread
alias pSDL_WaitThread = void function(SDL_Thread* thread, int* status)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

SDL_ThreadPriority
enum SDL_ThreadPriority
Undocumented in source.
SDL_ThreadPriority
enum SDL_ThreadPriority
Undocumented in source.

Functions

SDL_CreateThread
SDL_Thread* SDL_CreateThread(SDL_ThreadFunction fn, const(char)* name, void* data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_CreateThread
SDL_Thread* SDL_CreateThread(SDL_ThreadFunction , const(char)* , void* )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_CreateThreadImpl
SDL_Thread* SDL_CreateThreadImpl(SDL_ThreadFunction fn, const(char)* name, void* data)
Undocumented in source. Be warned that the author may not have intended to support it.
SDL_CreateThreadWithStackSize
SDL_Thread* SDL_CreateThreadWithStackSize(SDL_ThreadFunction fn, const(char)* name, const(size_t) stacksize, void* data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_CreateThreadWithStackSize
SDL_Thread* SDL_CreateThreadWithStackSize(SDL_ThreadFunction fn, const(char)* name, const(size_t) stacksize, void* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_CreateThreadWithStackSizeImpl
SDL_Thread* SDL_CreateThreadWithStackSizeImpl(SDL_ThreadFunction fn, const(char)* name, const(size_t) stackSize, void* data)
Undocumented in source. Be warned that the author may not have intended to support it.
SDL_DetachThread
void SDL_DetachThread(SDL_Thread* thread)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_GetThreadID
SDL_threadID SDL_GetThreadID(SDL_Thread* thread)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_GetThreadName
const(char)* SDL_GetThreadName(SDL_Thread* thread)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_SetThreadPriority
int SDL_SetThreadPriority(SDL_ThreadPriority priority)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_TLSCreate
SDL_TLSID SDL_TLSCreate()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_TLSGet
void* SDL_TLSGet(SDL_TLSID id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_TLSSet
int SDL_TLSSet(SDL_TLSID id, const(void)* value, TLSDestructor destructor)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_ThreadID
SDL_threadID SDL_ThreadID()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SDL_WaitThread
void SDL_WaitThread(SDL_Thread* thread, int* status)
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_CreateThread
pSDL_CreateThread SDL_CreateThread;
Undocumented in source.
SDL_CreateThreadWithStackSize
pSDL_CreateThreadWithStackSize SDL_CreateThreadWithStackSize;
Undocumented in source.
SDL_DetachThread
pSDL_DetachThread SDL_DetachThread;
Undocumented in source.
SDL_GetThreadID
pSDL_GetThreadID SDL_GetThreadID;
Undocumented in source.
SDL_GetThreadName
pSDL_GetThreadName SDL_GetThreadName;
Undocumented in source.
SDL_SetThreadPriority
pSDL_SetThreadPriority SDL_SetThreadPriority;
Undocumented in source.
SDL_TLSCreate
pSDL_TLSCreate SDL_TLSCreate;
Undocumented in source.
SDL_TLSGet
pSDL_TLSGet SDL_TLSGet;
Undocumented in source.
SDL_TLSSet
pSDL_TLSSet SDL_TLSSet;
Undocumented in source.
SDL_ThreadID
pSDL_ThreadID SDL_ThreadID;
Undocumented in source.
SDL_WaitThread
pSDL_WaitThread SDL_WaitThread;
Undocumented in source.

Structs

SDL_Thread
struct SDL_Thread
Undocumented in source.

Meta