comparison include/SDL_config.h.minimal @ 1353:7ba544e2888d

Started the process of improving configure support, and merging C types and library support into a single header.
author Sam Lantinga <slouken@libsdl.org>
date Thu, 09 Feb 2006 09:07:13 +0000
parents d02b552e5304
children d910939febfa
comparison
equal deleted inserted replaced
1352:c643342f3f33 1353:7ba544e2888d
23 #ifndef _SDL_config_h 23 #ifndef _SDL_config_h
24 #define _SDL_config_h 24 #define _SDL_config_h
25 25
26 /* This is the minimal configuration that can be used to build SDL */ 26 /* This is the minimal configuration that can be used to build SDL */
27 27
28 #define HAVE_STDARG_H 1 28 #include <stdarg.h>
29
30 typedef signed char int8_t;
31 typedef unsigned char uint8_t;
32 typedef signed short int16_t;
33 typedef unsigned short uint16_t;
34 typedef signed int int32_t;
35 typedef unsigned int uint32_t;
36 typedef unsigned int size_t;
37 typedef unsigned long uintptr_t;
29 38
30 #endif /* _SDL_config_h */ 39 #endif /* _SDL_config_h */