Files @ r5641:198896d65986
Branch filter:

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

KUDr
(svn r8100) -Propchange: EOL style changed to LF for /projects/generate
/* $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 */