Files @ r8569:231354a61570
Branch filter:

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

frosch
(svn r12147) -Codechange: Use macros to build DrawTileSprites-tables in station_land and unmovable_land.
/* $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 */