Files @ r6310:4b742cf310bd
Branch filter:

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

belugas
(svn r9215) -Documentation : correct Doxygen of comments
/* $Id$ */

#ifndef THREAD_H
#define THREAD_H

struct OTTDThread;

typedef void* (*OTTDThreadFunc)(void*);

OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
void*       OTTDJoinThread(OTTDThread*);
void        OTTDExitThread();

#endif /* THREAD_H */