thread.h
author celestar
Fri, 29 Dec 2006 11:03:39 +0000
branchcustombridgeheads
changeset 5593 3e0dd1f014ca
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r7610) [cbh] - Codechange: Created seperate Tile Type Procs for tunnel and bridge tiles
/* $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 */