aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/gos_win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gos/gos_win32.c')
-rw-r--r--src/gos/gos_win32.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gos/gos_win32.c b/src/gos/gos_win32.c
index e9abedd7..5eecca88 100644
--- a/src/gos/gos_win32.c
+++ b/src/gos/gos_win32.c
@@ -21,6 +21,10 @@ void _gosInit(void)
/* No initialization of the operating system itself is needed */
}
+void _gosPostInit(void)
+{
+}
+
void _gosDeinit(void)
{
@@ -102,7 +106,7 @@ gfxThreadHandle gfxThreadCreate(void *stackarea, size_t stacksz, threadpriority_
HANDLE thd;
if (!(thd = CreateThread(0, stacksz, fn, param, CREATE_SUSPENDED, 0)))
- return FALSE;
+ return 0;
SetThreadPriority(thd, prio);
ResumeThread(thd);