Files @ r7988:6e863b967b47
Branch filter:

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

glx
(svn r11544) -Fix [FS#1501]: revert r11453 as it translated cargo when it should not
/* $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 */