Files @ r5459:3ecf8d683b5b
Branch filter:

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

miham
(svn r7723) WebTranslator2 update to 2007-01-01 19:13:54
german - 1 changed by moewe2 (1)
greek - 63 changed by gonik (63)
slovak - 3 fixed, 4 changed by lengyel (7)
/* $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 */