al_create_thread - Man Page
Allegro 5 API
Synopsis
#include <allegro5/allegro.h> ALLEGRO_THREAD *al_create_thread( void *(*proc)(ALLEGRO_THREAD *thread, void *arg), void *arg)
Description
Spawn a new thread which begins executing proc
. The new thread is passed its own thread handle and the value arg
.
Returns a pointer to the thread on success. Otherwise, returns NULL if there was an error.
See Also
Referenced By
al_run_detached_thread(3), al_show_native_file_dialog(3), al_start_thread(3).
Allegro reference manual