thread.h
author rubidium
Sun, 03 Sep 2006 22:07:28 +0000
changeset 4536 f13408cba18f
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r6365) -Cleanup: remove IsGeneratingWorld calls that are either not called or have no effect.
/* $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 */