# HG changeset patch # User Sam Lantinga # Date 1104642676 0 # Node ID 5b1cb1e9140dfcd64142c96a285864c3b6388adc # Parent e3b3130f3af87e9082e885b92036fcb45ae10706 Allow SDL to be loaded by Matlab diff -r e3b3130f3af8 -r 5b1cb1e9140d include/SDL_video.h --- a/include/SDL_video.h Sun Jan 02 05:05:21 2005 +0000 +++ b/include/SDL_video.h Sun Jan 02 05:11:16 2005 +0000 @@ -89,11 +89,6 @@ Uint8 alpha; } SDL_PixelFormat; -/* typedef for private surface blitting functions */ -struct SDL_Surface; -typedef int (*SDL_blit)(struct SDL_Surface *src, SDL_Rect *srcrect, - struct SDL_Surface *dst, SDL_Rect *dstrect); - /* This structure should be treated as read-only, except for 'pixels', which, if not NULL, contains the raw pixel data for the surface. */ @@ -152,6 +147,10 @@ (surface->offset || \ ((surface->flags & (SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_RLEACCEL)) != 0)) +/* typedef for private surface blitting functions */ +typedef int (*SDL_blit)(struct SDL_Surface *src, SDL_Rect *srcrect, + struct SDL_Surface *dst, SDL_Rect *dstrect); + /* Useful for determining the video hardware capabilities */ typedef struct SDL_VideoInfo {