Commit 9feabd351cb7e40175c9003251ca0556cbfbb4fb

Sam Lantinga 2020-02-11T08:01:44

Make sure SDL_CreateThread has the same signature regardless of how the DLL was created.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/SDL_thread.h b/include/SDL_thread.h
index b9e9575..7a779d5 100644
--- a/include/SDL_thread.h
+++ b/include/SDL_thread.h
@@ -69,7 +69,7 @@ typedef enum {
  */
 typedef int (SDLCALL * SDL_ThreadFunction) (void *data);
 
-#if defined(__WIN32__) && !defined(HAVE_LIBC)
+#if defined(__WIN32__)
 /**
  *  \file SDL_thread.h
  *