Tao.Sdl SDK Documentation

Sdl.SDL_WaitThread Method 

Wait for a thread to finish. The return code for the thread function is placed in the area pointed to by 'status', if 'status' is not NULL.

[Visual Basic]
Public Shared Sub SDL_WaitThread( _
   ByVal thread As IntPtr, _
   ByRef status As Integer _
)
[C#]
public static void SDL_WaitThread(
   IntPtr thread,
   out int status
);

Remarks

Binds to C-function call in SDL_thread.h:

extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status)

See Also

Sdl Class | Tao.Sdl Namespace