Files @ r8933:d98e0783fa25
Branch filter:

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

belugas
(svn r12705) -Codechange: enumification of some more widgets
/* $Id$ */

/** @file thread.h */

#ifndef THREAD_H
#define THREAD_H

struct OTTDThread;

typedef void * (*OTTDThreadFunc)(void*);

OTTDThread *OTTDCreateThread(OTTDThreadFunc, void*);
void       *OTTDJoinThread(OTTDThread*);
void        OTTDExitThread();

#endif /* THREAD_H */