Files @ r6417:89329fa8ac80
Branch filter:

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

rubidium
(svn r9553) -Documentation: fix ambiguity issue.
/* $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 */