view src/thread.h @ 7481:a811420eaa26 draft

(svn r10992) -Fix [FS#1132]: huge amount of vehicles in the "ungrouped" group. Patch by frosch.
author rubidium <rubidium@openttd.org>
date Mon, 27 Aug 2007 21:33:26 +0000
parents 5305f52bed67
children a56c5ca0f396
line wrap: on
line source

/* $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 */