Mercurial > sdl-ios-xcode
diff src/events/SDL_events.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 | 450721ad5436 |
children | c71e05b4dc2e |
line wrap: on
line diff
--- a/src/events/SDL_events.c Mon Feb 06 17:28:04 2006 +0000 +++ b/src/events/SDL_events.c Tue Feb 07 06:59:48 2006 +0000 @@ -151,7 +151,7 @@ { /* Reset everything to zero */ SDL_EventThread = NULL; - memset(&SDL_EventLock, 0, sizeof(SDL_EventLock)); + SDL_memset(&SDL_EventLock, 0, sizeof(SDL_EventLock)); /* Create the lock and set ourselves active */ #ifndef DISABLE_THREADS @@ -239,7 +239,7 @@ /* No filter to start with, process most event types */ SDL_EventOK = NULL; - memset(SDL_ProcessEvents,SDL_ENABLE,sizeof(SDL_ProcessEvents)); + SDL_memset(SDL_ProcessEvents,SDL_ENABLE,sizeof(SDL_ProcessEvents)); SDL_eventstate = ~0; /* It's not save to call SDL_EventState() yet */ SDL_eventstate &= ~(0x00000001 << SDL_SYSWMEVENT); @@ -306,7 +306,7 @@ { int here, next; - /* This can probably be optimized with memcpy() -- careful! */ + /* This can probably be optimized with SDL_memcpy() -- careful! */ if ( --SDL_EventQ.tail < 0 ) { SDL_EventQ.tail = MAXEVENTS-1; } @@ -493,7 +493,7 @@ posted = 0; if ( SDL_ProcessEvents[SDL_SYSWMEVENT] == SDL_ENABLE ) { SDL_Event event; - memset(&event, 0, sizeof(event)); + SDL_memset(&event, 0, sizeof(event)); event.type = SDL_SYSWMEVENT; event.syswm.msg = message; if ( (SDL_EventOK == NULL) || (*SDL_EventOK)(&event) ) {