Files @ r5170:49b50acf2141
Branch filter:

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

Darkvater
(svn r7280) -Codechange: Replace some sprintf() functions with the safer snprintf() functions
/* $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 */