Files @ r3597:0f4285a9d8fa
Branch filter:

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

peter1138
(svn r4488) - Add newgrf_spritegroup.[ch] to MS VS project files
/* $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 */