thread.h
author KUDr
Sat, 07 Oct 2006 20:31:38 +0000
changeset 4769 172e18f63248
parent 4300 c7e43c47a2b9
permissions -rw-r--r--
(svn r6683) -Fix: '<' signed unsigned mismatch produced by VC8
/* $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 */