thread.h
author rubidium
Wed, 31 Jan 2007 12:47:35 +0000
branch0.5
changeset 5425 1a9efec6fd29
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r8490) [0.5] -Add: logging of the IP address and port of invalid/illegal UDP packets.
/* $Id$ */

#ifndef THREAD_H
#define THREAD_H

typedef struct OTTDThread OTTDThread;

typedef void* (*OTTDThreadFunc)(void*);

OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
void*       OTTDJoinThread(OTTDThread*);
void        OTTDExitThread(void);

#endif /* THREAD_H */