Files @ r5000:af9fc7861527
Branch filter:

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

tron
(svn r7013) Add glyphs for the interpunct. This is mainly useful for the catalan translation
/* $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 */