Files @ r4915:c61a65024292
Branch filter:

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

peter1138
(svn r6888) - Fix (r6884): Missed a couple of strecpy()s in newgrf text handling
/* $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 */