thread.h
author rubidium
Thu, 16 Nov 2006 18:33:55 +0000
changeset 5104 5107dadabd42
parent 4300 c7e43c47a2b9
permissions -rw-r--r--
(svn r7175) -Fix: remove English (i.e. untranslated) strings from the Ukrainian language file.
/* $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 */