Files @ r4285:8d597bba823e
Branch filter:

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

rubidium
(svn r5915) -Cleanup: some variables were named *_date while they were only holding years; rename these variables to match this.
/* $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 */