Files @ r5353:fe9a344eed73
Branch filter:

Location: cpp/openttd-patchpack/source/thread.h - annotation

rubidium
(svn r7524) -Fix: remove empty strings that should not have been empty 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 */