thread.h
author celestar
Fri, 29 Dec 2006 12:45:44 +0000
branchcustombridgeheads
changeset 5597 ffc0b228cee6
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r7615) [cbh] - Doc: Updated the documentation for map array
/* $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 */