mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-01-22 15:11:54 +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 */
|