summaryrefslogtreecommitdiff
path: root/src/thread_none.cpp
blob: 34f8ca1fff566a7f5bd021445c5230fb111f7c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* $Id$ */

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

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

/* static */ bool ThreadObject::New(OTTDThreadFunc proc, void *param, ThreadObject **thread)
{
	if (thread != NULL) *thread = NULL;
	return false;
}