Files @ r6522:78d7ef152245
Branch filter:

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

maedhros
(svn r9709) -Fix (r9706): Larger towns use t->larger_towns, not the town index.
/* $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 */