Files @ r8814:8b2b17bb64fc
Branch filter:

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

smatz
(svn r12560) -Cleanup: town_cmd.cpp and header files - variable scope and a bit of coding style
/* $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 */