Files @ r7770:09918df1f6fd
Branch filter:

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

rubidium
(svn r11319) -Add: halftile- and anti-zig-zag-foundations. Patch by frosch.
/* $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 */