thread.h
author Darkvater
Sat, 09 Dec 2006 10:57:05 +0000
changeset 5297 79c1f20edadc
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r7450) -Codechange: Remove dead code, caption is set in the next switch block of vehicle list for all cases (Tron)
/* $Id$ */

#ifndef THREAD_H
#define THREAD_H

typedef struct OTTDThread OTTDThread;

typedef void* (*OTTDThreadFunc)(void*);

OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
void*       OTTDJoinThread(OTTDThread*);
void        OTTDExitThread(void);

#endif /* THREAD_H */