Files @ r2633:c8c56854b430
Branch filter:

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

orudge
(svn r3175) - Updated OS/2 project file to include station_newgrf.c
/* $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 */