Mercurial > hg > openttd
view src/thread.h @ 6492:e0b6c88a6650 draft
(svn r9673) -Cleanup: remove spaces before tabs and replace non-indenting tabs with spaces.
author | rubidium <rubidium@openttd.org> |
---|---|
date | Wed, 18 Apr 2007 22:41:53 +0000 |
parents | fb10eafe2a26 |
children | 5305f52bed67 |
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 */