thread.h
author Darkvater
Sat, 21 Oct 2006 22:24:28 +0000
changeset 4905 49b0d1b84fc3
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r6875) -Feature: Allow for " to be in console tokens. Escape them with \. eg \".
/* $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 */