summaryrefslogtreecommitdiff
path: root/src/thread_none.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread_none.cpp')
-rw-r--r--src/thread_none.cpp20
1 files changed, 3 insertions, 17 deletions
diff --git a/src/thread_none.cpp b/src/thread_none.cpp
index a5599dff1..34f8ca1ff 100644
--- a/src/thread_none.cpp
+++ b/src/thread_none.cpp
@@ -5,22 +5,8 @@
#include "stdafx.h"
#include "thread.h"
-/* static */ ThreadObject *ThreadObject::New(OTTDThreadFunc proc, void *param)
+/* static */ bool ThreadObject::New(OTTDThreadFunc proc, void *param, ThreadObject **thread)
{
- return NULL;
-}
-
-/* static */ ThreadObject *ThreadObject::AttachCurrent()
-{
- return NULL;
-}
-
-/* static */ uint ThreadObject::CurrentId()
-{
- return -1;
-}
-
-/* static */ ThreadSemaphore *ThreadSemaphore::New()
-{
- return NULL;
+ if (thread != NULL) *thread = NULL;
+ return false;
}