thread.h
author rubidium
Sat, 09 Dec 2006 08:37:15 +0000
changeset 5295 ab31e01faa80
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r7448) -Fix (r5794): use the height of the edge of the map for effect vehicles that are outside the map.
/* $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 */