Files @ r5997:b5a74d8a12b8
Branch filter:

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

celestar
(svn r8708) -Codechange(r8514): No need to use "this->" in methods
/* $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 */