/* $Id: thread.h 6028 2006-08-21 01:50:52Z richk $ */ #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 */