Files @ r3839:c818a3a3c685
Branch filter:

Location: cpp/openttd-patchpack/source/thread.h

miham
(svn r4863) WebTranslator2 update to 2006-05-13 18:38:31
czech - 10 fixed by Hadez (10)
dutch - 10 fixed, 12 changed by habell (15), webfreakz (7)
estonian - 63 fixed by t2t2 (63)
finnish - 39 fixed by habazi (39)
german - 17 changed by Neonox (13), chu (4)
/* $Id$ */

#ifndef THREAD_H
#define THREAD_H

typedef struct Thread Thread;

typedef void* (*ThreadFunc)(void*);

Thread* OTTDCreateThread(ThreadFunc, void*);
void*   OTTDJoinThread(Thread*);

#endif /* THREAD_H */