mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-02 09:40:35 +00:00
14 lines
216 B
C
14 lines
216 B
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 */
|