Files @ r3805:fad05e642f4f
Branch filter:

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

miham
(svn r4813) WebTranslator2 update to 2006-05-10 12:51:40
dutch - 3 fixed by webfreakz (3)
hungarian - 2 fixed by miham (2)
lithuanian - 50 fixed, 3 changed by Plyta (53)
polish - 2 fixed by meush (2)
portuguese - 2 fixed by izhirahider (2)
/* $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 */