Files @ r7087:34eb33fa7a5c
Branch filter:

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

rubidium
(svn r10354) -Fix [FS#950]: loading indicator showed "^" when the train would load at the given station.
/* $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 */