Files @ r3202:9eef9ae84c2b
Branch filter:

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

truelight
(svn r3870) -Fix: missed one item in last commit, tnx glx :)
/* $Id$ */

#ifndef THREAD_H
#define THREAD_H

typedef struct Thread Thread;

typedef void* (*ThreadFunc)(void*);

Thread* OTTDCreateThread(ThreadFunc, void*);
void*   OTTDJoinThread(Thread*);

#endif /* THREAD_H */