Files @ r4229:514e034b774c
Branch filter:

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

belugas
(svn r5785) Fix(5771) : Silenced a warning in MSVC that prevented from compiling.
/* $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 */