Files @ r5388:b83fe4735739
Branch filter:

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

Darkvater
(svn r7577) -Fix (r7565): Missed out some OSX files (Bjarni)
/* $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 */