thread.h
author rubidium
Thu, 08 Feb 2007 16:18:11 +0000
branch0.5
changeset 5435 c1fef8c3fc7e
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r8639) [0.5] -Update readme's, bugs, installers, changelogs etc. to prepare for 0.5.0-RC5.
/* $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 */