diff --git a/Makefile.os2 b/Makefile.os2
index eb34494c5..328215679 100644
--- a/Makefile.os2
+++ b/Makefile.os2
@@ -60,7 +60,7 @@ CFLAGS_DLL+= -DHAVE_LIBUSB_H=1
# building SDL itself (for DECLSPEC):
CFLAGS_DLL+= -DBUILD_SDL
-SRCS = SDL.c SDL_assert.c SDL_error.c SDL_log.c SDL_dataqueue.c SDL_hints.c
+SRCS = SDL.c SDL_assert.c SDL_error.c SDL_log.c SDL_dataqueue.c SDL_hints.c SDL_list.c
SRCS+= SDL_getenv.c SDL_iconv.c SDL_malloc.c SDL_qsort.c SDL_stdlib.c SDL_string.c SDL_strtokr.c SDL_crc32.c
SRCS+= SDL_cpuinfo.c SDL_atomic.c SDL_spinlock.c SDL_thread.c SDL_timer.c
SRCS+= SDL_rwops.c SDL_power.c
diff --git a/VisualC-WinRT/SDL-UWP.vcxproj b/VisualC-WinRT/SDL-UWP.vcxproj
index e2dc5ebe3..681f6232c 100644
--- a/VisualC-WinRT/SDL-UWP.vcxproj
+++ b/VisualC-WinRT/SDL-UWP.vcxproj
@@ -144,6 +144,7 @@
+
@@ -295,6 +296,7 @@
+
diff --git a/VisualC-WinRT/SDL-UWP.vcxproj.filters b/VisualC-WinRT/SDL-UWP.vcxproj.filters
index 274244937..b9a9f823b 100644
--- a/VisualC-WinRT/SDL-UWP.vcxproj.filters
+++ b/VisualC-WinRT/SDL-UWP.vcxproj.filters
@@ -411,6 +411,9 @@
Source Files
+
+ Source Files
+
Source Files
@@ -780,6 +783,9 @@
Source Files
+
+ Source Files
+
Source Files
@@ -819,4 +825,4 @@
Source Files
-
\ No newline at end of file
+
diff --git a/VisualC/SDL/SDL.vcxproj b/VisualC/SDL/SDL.vcxproj
index 0e9062b56..0d1ab307c 100644
--- a/VisualC/SDL/SDL.vcxproj
+++ b/VisualC/SDL/SDL.vcxproj
@@ -369,6 +369,7 @@
+
@@ -543,6 +544,7 @@
+
diff --git a/VisualC/SDL/SDL.vcxproj.filters b/VisualC/SDL/SDL.vcxproj.filters
index da002cd3c..12162e458 100644
--- a/VisualC/SDL/SDL.vcxproj.filters
+++ b/VisualC/SDL/SDL.vcxproj.filters
@@ -401,6 +401,7 @@
+
API Headers
@@ -832,6 +833,7 @@
+
audio
diff --git a/src/video/SDL_pixels.c b/src/video/SDL_pixels.c
index b76161d03..858ccba7b 100644
--- a/src/video/SDL_pixels.c
+++ b/src/video/SDL_pixels.c
@@ -28,6 +28,7 @@
#include "SDL_blit.h"
#include "SDL_pixels_c.h"
#include "SDL_RLEaccel_c.h"
+#include "../SDL_list.h"
/* Lookup tables to expand partial bytes to the full 0..255 range */
@@ -1024,12 +1025,6 @@ SDL_AllocBlitMap(void)
}
-typedef struct SDL_ListNode
-{
- void *entry;
- struct SDL_ListNode *next;
-} SDL_ListNode;
-
void
SDL_InvalidateAllBlitMap(SDL_Surface *surface)
{
@@ -1045,40 +1040,6 @@ SDL_InvalidateAllBlitMap(SDL_Surface *surface)
}
}
-static void SDL_ListAdd(SDL_ListNode **head, void *ent);
-static void SDL_ListRemove(SDL_ListNode **head, void *ent);
-
-void
-SDL_ListAdd(SDL_ListNode **head, void *ent)
-{
- SDL_ListNode *node = SDL_malloc(sizeof (*node));
-
- if (node == NULL) {
- SDL_OutOfMemory();
- return;
- }
-
- node->entry = ent;
- node->next = *head;
- *head = node;
-}
-
-void
-SDL_ListRemove(SDL_ListNode **head, void *ent)
-{
- SDL_ListNode **ptr = head;
-
- while (*ptr) {
- if ((*ptr)->entry == ent) {
- SDL_ListNode *tmp = *ptr;
- *ptr = (*ptr)->next;
- SDL_free(tmp);
- return;
- }
- ptr = &(*ptr)->next;
- }
-}
-
void
SDL_InvalidateMap(SDL_BlitMap * map)
{