comparison src/video/windx5/SDL_dx5yuv.c @ 1330:450721ad5436

It's now possible to build SDL without any C runtime at all on Windows, using Visual C++ 2005
author Sam Lantinga <slouken@libsdl.org>
date Mon, 06 Feb 2006 08:28:51 +0000
parents c9b51268668f
children 3692456e7b0f
comparison
equal deleted inserted replaced
1329:bc67bbf87818 1330:450721ad5436
20 slouken@libsdl.org 20 slouken@libsdl.org
21 */ 21 */
22 22
23 /* This is the DirectDraw implementation of YUV video overlays */ 23 /* This is the DirectDraw implementation of YUV video overlays */
24 24
25 #include <stdlib.h>
26 #include <string.h>
27
28 #include "SDL_error.h" 25 #include "SDL_error.h"
29 #include "SDL_video.h" 26 #include "SDL_video.h"
27 #include "SDL_stdlib.h"
28 #include "SDL_string.h"
30 #include "SDL_dx5yuv_c.h" 29 #include "SDL_dx5yuv_c.h"
31 #include "SDL_yuvfuncs.h" 30 #include "SDL_yuvfuncs.h"
32 31
33 //#define USE_DIRECTX_OVERLAY 32 //#define USE_DIRECTX_OVERLAY
34 33