Files @ r4934:0fd7161aa5df
Branch filter:

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

peter1138
(svn r6921) - PEBKAC: Add an MD5 sum check of our own data files, and warn if they don't match.
/* $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 */