Files @ r3922:21d5488b55b5
Branch filter:

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

celestar
(svn r5055) -Fix: Correct some errors in the bridge sprite numbers
/* $Id$ */

#ifndef THREAD_H
#define THREAD_H

typedef struct Thread Thread;

typedef void* (*ThreadFunc)(void*);

Thread* OTTDCreateThread(ThreadFunc, void*);
void*   OTTDJoinThread(Thread*);

#endif /* THREAD_H */