Files @ r4543:756167771b4a
Branch filter:

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

miham
(svn r6375) WebTranslator2 update to 2006-09-04 08:35:58
german - 1 changed by Neonox (1)
spanish - 87 fixed by eusebio (87)
turkish - 4 fixed by jnmbk (4)
/* $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 */