thread.h
author glx
Wed, 20 Sep 2006 01:08:50 +0000
changeset 4626 a8e20b5d9d62
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r6486) -Fix (r6485): wrong variable name used in GetNewgrfCurrencyIdConverted()
/* $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 */