thread.h
author tron
Wed, 22 Nov 2006 16:08:01 +0000
changeset 5147 db717cde801d
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r7239) Enumerate the widgets in the airport, dock, rail and road toolbars
/* $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 */