thread.h
author Darkvater
Sun, 03 Sep 2006 21:53:32 +0000
changeset 4535 08791858ea23
parent 4300 c7e43c47a2b9
permissions -rw-r--r--
(svn r6364) -Codechange: forgot to set the $Revision$ keyword on ottdres.rc in r6358. Doh
/* $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 */