mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-06-28 16:09:36 +01:00
17 lines
278 B
C
17 lines
278 B
C
/* $Id$ */
|
|
|
|
/** @file thread.h */
|
|
|
|
#ifndef THREAD_H
|
|
#define THREAD_H
|
|
|
|
struct OTTDThread;
|
|
|
|
typedef void* (*OTTDThreadFunc)(void*);
|
|
|
|
OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
|
|
void* OTTDJoinThread(OTTDThread*);
|
|
void OTTDExitThread();
|
|
|
|
#endif /* THREAD_H */
|