thread.h
author Darkvater
Mon, 09 Oct 2006 14:28:35 +0000
changeset 4785 6f8c37b0ac42
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r6699) -Fixed translator link in readme
/* $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 */