src/thread.h
author belugas
Wed, 21 Mar 2007 17:42:43 +0000
changeset 6352 938ab8f48e5d
parent 6248 e4a2ed7e5613
child 6422 6679df1c05ba
permissions -rw-r--r--
(svn r9391) -Documentation : correct Doxygen of comments and @file inclusion. Time for P and Q files
/* $Id$ */

#ifndef THREAD_H
#define THREAD_H

struct OTTDThread;

typedef void* (*OTTDThreadFunc)(void*);

OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
void*       OTTDJoinThread(OTTDThread*);
void        OTTDExitThread();

#endif /* THREAD_H */