src/thread_none.cpp
author rubidium
Sun, 06 Apr 2008 12:26:40 +0000
branchnoai
changeset 9867 b7d9ffe24f81
parent 9857 7adb6a846add
child 10171 d4397d599d78
permissions -rw-r--r--
(svn r12589) [NoAI] -Add: GetLastError support for AIBridge.
/* $Id$ */

/** @file thread_none.cpp No-Threads-Available implementation of Threads */

#include "stdafx.h"
#include "thread.h"

OTTDThread *OTTDCreateThread(OTTDThreadFunc function, void *arg) {
	return NULL;
}

void *OTTDJoinThread(OTTDThread *t) {
	return NULL;
}

void OTTDExitThread() {
	NOT_REACHED();
}