Files @ r5528:0fdb8be88620
Branch filter:

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

rubidium
(svn r7836) -Codechange: some constness for network/core.
/* $Id$ */

#ifndef THREAD_H
#define THREAD_H

typedef struct OTTDThread OTTDThread;

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

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

#endif /* THREAD_H */