src/thread.h
author miham
Thu, 07 Jun 2007 12:37:27 +0000
changeset 6816 bff19f37423d
parent 6422 6679df1c05ba
child 7318 632cd0497770
permissions -rw-r--r--
(svn r10055) -Update: WebTranslator2 update to 2007-06-07 14:37:06
brazilian_portuguese - 3 fixed by tucalipe (3)
catalan - 3 fixed by arnaullv (3)
danish - 1 fixed by ThomasA (1)
estonian - 99 fixed by kristjans (99)
galician - 8 fixed by Condex (8)
norwegian_nynorsk - 35 fixed by pollux (35)
/* $Id$ */

/** @file thread.h */

#ifndef THREAD_H
#define THREAD_H

struct OTTDThread;

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

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

#endif /* THREAD_H */