thread.h
author tron
Tue, 14 Nov 2006 11:01:59 +0000
changeset 5081 f71d1d2da6ed
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r7145) Remove extra semicolons
/* $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 */