Files @ r7830:80ef221c9406
Branch filter:

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

glx
(svn r11380) -Revert (r11191, r11196): it worked, but broke cargo loading
/* $Id$ */

/** @file thread.h */

#ifndef THREAD_H
#define THREAD_H

struct OTTDThread;

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

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

#endif /* THREAD_H */