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 |
a pointer to the [[SDL_Thread]]() to wait for |
status |
a pointer filled with status data; see Remarks for details |
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
