Files @ r5407:8687f42a7985
Branch filter:

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

rubidium
(svn r7603) -Codechange (FS#481): update the Polish Town Name generator with Unicode characters (DDream).
/* $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 */