Mercurial > hg > openttd
view src/thread.h @ 8015:7ce9b4fdf0dc draft
(svn r11575) -Fix [FS#1502]: widget numbers of StationViewWindow were incorrect at some places
author | smatz <smatz@openttd.org> |
---|---|
date | Wed, 05 Dec 2007 16:55:33 +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 */