Tao.Sdl SDK Documentation

Sdl.SDL_CreateThread Method 

Create thread

[Visual Basic]
Public Shared Function SDL_CreateThread( _
   ByVal fn As ThreadDelegate, _
   ByVal data As Object _
) As IntPtr
[C#]
public static IntPtr SDL_CreateThread(
   ThreadDelegate fn,
   object data
);

Return Value

IntPtr to SDL_Thread struct

Remarks

Binds to C-function call in SDL_thread.h:

extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data)

See Also

Sdl Class | Tao.Sdl Namespace