diff src/video/photon/SDL_ph_mouse.c @ 1336:3692456e7b0f

Use SDL_ prefixed versions of C library functions. FIXME: Change #include <stdlib.h> to #include "SDL_stdlib.h" Change #include <string.h> to #include "SDL_string.h" Make sure nothing else broke because of this...
author Sam Lantinga <slouken@libsdl.org>
date Tue, 07 Feb 2006 06:59:48 +0000
parents c9b51268668f
children 604d73db6802
line wrap: on
line diff
--- a/src/video/photon/SDL_ph_mouse.c	Mon Feb 06 17:28:04 2006 +0000
+++ b/src/video/photon/SDL_ph_mouse.c	Tue Feb 07 06:59:48 2006 +0000
@@ -49,7 +49,7 @@
         SDL_Unlock_EventThread();
     }	
 
-    free(cursor);
+    SDL_free(cursor);
 }
 
 WMcursor *ph_CreateWMCursor(_THIS, Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
@@ -59,14 +59,14 @@
     unsigned char bit, databit, maskbit;
 
     /* Allocate and initialize the cursor memory */
-    if ((cursor = (WMcursor*)malloc(sizeof(WMcursor))) == NULL)
+    if ((cursor = (WMcursor*)SDL_malloc(sizeof(WMcursor))) == NULL)
     {
         SDL_OutOfMemory();
         return(NULL);
     }
-    memset(cursor,0,sizeof(WMcursor));
+    SDL_memset(cursor,0,sizeof(WMcursor));
 
-    cursor->ph_cursor = (PhCursorDef_t *) malloc(sizeof(PhCursorDef_t) + 32*4*2);
+    cursor->ph_cursor = (PhCursorDef_t *) SDL_malloc(sizeof(PhCursorDef_t) + 32*4*2);
 
     if (cursor->ph_cursor == NULL)
     {
@@ -74,7 +74,7 @@
         return NULL;
     }
 
-    memset(cursor->ph_cursor,0,(sizeof(PhCursorDef_t) + 32*4*2));
+    SDL_memset(cursor->ph_cursor,0,(sizeof(PhCursorDef_t) + 32*4*2));
 
     cursor->ph_cursor->hdr.type =Ph_RDATA_CURSOR;   
     cursor->ph_cursor->size1.x = (short)w;