thread.h
author Darkvater
Thu, 21 Dec 2006 21:56:10 +0000
changeset 5546 9915d1f44471
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r7537) -Forgot added VS80 support from Makefile
/* $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 */