DRAFT |
SDL_WaitThread
Use this function to wait for a thread to finish.
Syntax
void SDL_WaitThread(SDL_Thread* thread,
int* status)
Function Parameters
thread |
the [[SDL_Thread]] to wait for |
status |
status data; see Remarks for details |
green
Code Examples
You can add your code example here
Remarks
The return code for the thread function is placed in the area pointed to by status, if status is not NULL.
green
