thread.h
author miham
Thu, 21 Sep 2006 17:26:18 +0000
changeset 4630 81c3f19da034
parent 4300 c7e43c47a2b9
permissions -rw-r--r--
(svn r6493) WebTranslator2 update to 2006-09-21 19:25:54
czech - 19 fixed, 2 changed by Hadez (21)
/* $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 */