Files @ r7073:20c5bc176074
Branch filter:

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

maedhros
(svn r10338) -Codechange: Show the total time that the timetable will take.
/* $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 */