Files @ r3450:279b1b5bdf8b
Branch filter:

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

celestar
(svn r4282) -Cleanup: Re-arranged the ignore groups into a more readable arrangement
/* $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 */