Files @ r6703:47985892cccd
Branch filter:

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

rubidium
(svn r9935) -Fix: could not build a drive through station when there when you own the tram bits and the town owns the road.
/* $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 */