Files @ r8408:9bba0f36017f
Branch filter:

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

skidd13
(svn r11978) -Codechange: Replace some global variables with window owned ones
/* $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 */