Files @ r8581:4c83ae6c0e3a
Branch filter:

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

smatz
(svn r12162) -Fix [FS#1757]: towns shouldn't build over houses owned by another town
/* $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 */