Mercurial > sdl-ios-xcode
comparison include/SDL_config.h.minimal @ 1484:b2b476a4a73c
Added documentation on how to build a completely useless SDL library. :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 08 Mar 2006 08:30:17 +0000 |
parents | e3242177fe4a |
children | 30f189cdd82b |
comparison
equal
deleted
inserted
replaced
1483:52a61c7b323b | 1484:b2b476a4a73c |
---|---|
49 typedef unsigned short uint16_t; | 49 typedef unsigned short uint16_t; |
50 typedef signed int int32_t; | 50 typedef signed int int32_t; |
51 typedef unsigned int uint32_t; | 51 typedef unsigned int uint32_t; |
52 typedef unsigned int size_t; | 52 typedef unsigned int size_t; |
53 typedef unsigned long uintptr_t; | 53 typedef unsigned long uintptr_t; |
54 #endif | 54 |
55 /* Enable the disk audio driver (src/audio/disk/\*.c) */ | |
56 #define SDL_AUDIO_DRIVER_DISK 1 | |
57 | |
58 /* Enable the stub cdrom driver (src/cdrom/dummy/\*.c) */ | |
59 #define SDL_CDROM_DISABLED 1 | |
60 | |
61 /* Enable the stub joystick driver (src/joystick/dummy/\*.c) */ | |
62 #define SDL_JOYSTICK_DISABLED 1 | |
63 | |
64 /* Enable the stub shared object loader (src/loadso/dummy/\*.c) */ | |
65 #define SDL_LOADSO_DISABLED 1 | |
66 | |
67 /* Enable the stub thread support (src/thread/generic/\*.c) */ | |
68 #define SDL_THREADS_DISABLED 1 | |
69 | |
70 /* Enable the stub timer support (src/timer/dummy/\*.c) */ | |
71 #define SDL_TIMERS_DISABLED 1 | |
72 | |
73 /* Enable the dummy video driver (src/video/dummy/\*.c) */ | |
74 #define SDL_VIDEO_DRIVER_DUMMY 1 | |
75 | |
76 #endif /* platform config */ | |
55 | 77 |
56 #endif /* _SDL_config_h */ | 78 #endif /* _SDL_config_h */ |