Files @ r7361:4526784d7450
Branch filter:

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

peter1138
(svn r10724) -Fix (r10723): Toolbar spacing was off-by-one
/* $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 */