(svn r10235) -Fix: the 32bpp-anim blitter repainted pixel color 0, which is transparency and therefor should never be repainted (spotted by Rubidium)
/* $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 */