Files @ r5987:a759a742197a
Branch filter:

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

miham
(svn r8690) -Update: WebTranslator2 update to 2007-02-12 20:18:38
lithuanian - 11 fixed, 1 changed by Domas (12)
slovak - 63 changed by lengyel (63)
traditional_chinese - 8 changed by thomasau (8)
ukrainian - 1 changed by mad (1)
/* $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 */