Handle orientation change events.
[SDL.s60v3.git] / include / SDL_config_symbian.h
blobbe40dec2925dec58c0f878ef14d33d62e416ef72
1 /*
2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2006 Sam Lantinga
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 Sam Lantinga
20 slouken@libsdl.org
23 #ifndef _SDL_CONFIG_SYMBIAN_H
24 #define _SDL_CONFIG_SYMBIAN_H
26 #include "SDL_platform.h"
28 /* This is the minimal configuration that can be used to build SDL */
31 #include <stdarg.h>
32 #include <stddef.h>
35 #ifdef __GCCE__
36 #define SYMBIAN32_GCCE
37 #endif
39 #ifndef _SIZE_T_DEFINED
40 /*typedef unsigned int size_t;*/
41 #endif
43 #ifndef _INTPTR_T_DECLARED
44 typedef unsigned int uintptr_t;
45 #endif
47 #ifndef _INT8_T_DECLARED
48 typedef signed char int8_t;
49 #endif
51 #ifndef _UINT8_T_DECLARED
52 typedef unsigned char uint8_t;
53 #endif
55 #ifndef _INT16_T_DECLARED
56 typedef signed short int16_t;
57 #endif
59 #ifndef _UINT16_T_DECLARED
60 typedef unsigned short uint16_t;
61 #endif
63 #ifndef _INT32_T_DECLARED
64 typedef signed int int32_t;
65 #endif
67 #ifndef _UINT32_T_DECLARED
68 typedef unsigned int uint32_t;
69 #endif
71 #ifndef _INT64_T_DECLARED
72 typedef signed long long int64_t;
73 #endif
75 #ifndef _UINT64_T_DECLARED
76 typedef unsigned long long uint64_t;
77 #endif
79 #define SDL_AUDIO_DRIVER_EPOCAUDIO 1
82 /* Enable the stub cdrom driver (src/cdrom/dummy/\*.c) */
83 #define SDL_CDROM_DISABLED 1
85 /* Enable the stub joystick driver (src/joystick/dummy/\*.c) */
86 #define SDL_JOYSTICK_DISABLED 1
88 /* Enable the stub shared object loader (src/loadso/dummy/\*.c) */
89 #define SDL_LOADSO_DISABLED 1
91 #define SDL_THREAD_SYMBIAN 1
93 #define SDL_VIDEO_DRIVER_EPOC 1
95 #define SDL_VIDEO_OPENGL 0
97 #define SDL_HAS_64BIT_TYPE 1
99 #define HAVE_LIBC 1
100 #define HAVE_STDIO_H 1
101 #define STDC_HEADERS 1
102 #define HAVE_STRING_H 1
103 #define HAVE_CTYPE_H 1
104 #define HAVE_MATH_H 1
106 #define HAVE_MALLOC 1
107 #define HAVE_CALLOC 1
108 #define HAVE_REALLOC 1
109 #define HAVE_FREE 1
110 /*#define HAVE_ALLOCA 1*/
111 #define HAVE_QSORT 1
112 #define HAVE_ABS 1
113 #define HAVE_MEMSET 1
114 #define HAVE_MEMCPY 1
115 #define HAVE_MEMMOVE 1
116 #define HAVE_MEMCMP 1
117 #define HAVE_STRLEN 1
118 #define HAVE__STRUPR 1
119 #define HAVE_STRCHR 1
120 #define HAVE_STRRCHR 1
121 #define HAVE_STRSTR 1
122 #define HAVE_ITOA 1
123 #define HAVE_STRTOL 1
124 #define HAVE_STRTOUL 1
125 #define HAVE_STRTOLL 1
126 #define HAVE_STRTOD 1
127 #define HAVE_ATOI 1
128 #define HAVE_ATOF 1
129 #define HAVE_STRCMP 1
130 #define HAVE_STRNCMP 1
131 /*#define HAVE__STRICMP 1*/
132 #define HAVE__STRNICMP 1
133 #define HAVE_SSCANF 1
134 #define HAVE_STDARG_H 1
135 #define HAVE_STDDEF_H 1
139 #endif /* _SDL_CONFIG_SYMBIAN_H */