Mercurial > sdl-ios-xcode
annotate include/SDL_stdinc.h @ 3577:72024425b437
Fixed bug #736
Don't use the SSE cache instruction in MMX code if SSE isn't available. :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 16 Dec 2009 03:02:31 +0000 |
parents | fb9ea4b549c3 |
children | 15eea7a1fa97 |
rev | line source |
---|---|
1357 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
2859 | 3 Copyright (C) 1997-2009 Sam Lantinga |
1357 | 4 |
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. | |
9 | |
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. | |
14 | |
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 | |
18 | |
19 Sam Lantinga | |
20 slouken@libsdl.org | |
21 */ | |
22 | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
23 /** |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
24 * \file SDL_stdinc.h |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
25 * |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
26 * This is a general header that includes C language support. |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
27 */ |
1357 | 28 |
29 #ifndef _SDL_stdinc_h | |
30 #define _SDL_stdinc_h | |
31 | |
32 #include "SDL_config.h" | |
33 | |
34 | |
1626 | 35 #ifdef HAVE_SYS_TYPES_H |
1357 | 36 #include <sys/types.h> |
37 #endif | |
1626 | 38 #ifdef HAVE_STDIO_H |
1357 | 39 #include <stdio.h> |
40 #endif | |
1626 | 41 #if defined(STDC_HEADERS) |
1357 | 42 # include <stdlib.h> |
43 # include <stddef.h> | |
44 # include <stdarg.h> | |
45 #else | |
1626 | 46 # if defined(HAVE_STDLIB_H) |
47 # include <stdlib.h> | |
48 # elif defined(HAVE_MALLOC_H) | |
49 # include <malloc.h> | |
1357 | 50 # endif |
1626 | 51 # if defined(HAVE_STDDEF_H) |
52 # include <stddef.h> | |
1422
d2ee8da60262
Added pre-configured versions of SDL_config.h for various platforms
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
53 # endif |
1626 | 54 # if defined(HAVE_STDARG_H) |
55 # include <stdarg.h> | |
1357 | 56 # endif |
57 #endif | |
1626 | 58 #ifdef HAVE_STRING_H |
59 # if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H) | |
60 # include <memory.h> | |
1357 | 61 # endif |
62 # include <string.h> | |
63 #endif | |
1626 | 64 #ifdef HAVE_STRINGS_H |
1357 | 65 # include <strings.h> |
66 #endif | |
1626 | 67 #if defined(HAVE_INTTYPES_H) |
1357 | 68 # include <inttypes.h> |
1626 | 69 #elif defined(HAVE_STDINT_H) |
1357 | 70 # include <stdint.h> |
71 #endif | |
1626 | 72 #ifdef HAVE_CTYPE_H |
1357 | 73 # include <ctype.h> |
74 #endif | |
3012
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
75 #ifdef HAVE_MATH_H |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
76 # include <math.h> |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
77 #endif |
3295
4ff84e8939c1
Whoops, need both the header and the library!
Sam Lantinga <slouken@libsdl.org>
parents:
3294
diff
changeset
|
78 #if defined(HAVE_ICONV) && defined(HAVE_ICONV_H) |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
79 # include <iconv.h> |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
80 #endif |
1357 | 81 |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
82 /** |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
83 * The number of elements in an array. |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
84 */ |
1357 | 85 #define SDL_arraysize(array) (sizeof(array)/sizeof(array[0])) |
86 #define SDL_TABLESIZE(table) SDL_arraysize(table) | |
87 | |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
88 /** |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
89 * \name Cast operators |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
90 * |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
91 * Use proper C++ casts when compiled as C++ to be compatible with the option |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
92 * -Wold-style-cast of GCC (and -Werror=old-style-cast in GCC 4.2 and above). |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
93 */ |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
94 /*@{*/ |
3067 | 95 #ifdef __cplusplus |
96 #define SDL_reinterpret_cast(type, expression) reinterpret_cast<type>(expression) | |
97 #define SDL_static_cast(type, expression) static_cast<type>(expression) | |
98 #else | |
99 #define SDL_reinterpret_cast(type, expression) ((type)(expression)) | |
100 #define SDL_static_cast(type, expression) ((type)(expression)) | |
101 #endif | |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
102 /*@}*//*Cast operators*/ |
3067 | 103 |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
104 /** |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
105 * \name Basic data types |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
106 */ |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
107 /*@{*/ |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
108 |
3365
9cd5b35c0184
Made typedef for SDL_bool the same as the other typedefs.
Sam Lantinga <slouken@libsdl.org>
parents:
3295
diff
changeset
|
109 typedef enum |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
110 { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
111 SDL_FALSE = 0, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
112 SDL_TRUE = 1 |
1357 | 113 } SDL_bool; |
114 | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
115 /** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
116 * \brief A signed 8-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
117 */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
118 typedef int8_t Sint8; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
119 /** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
120 * \brief An unsigned 8-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
121 */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
122 typedef uint8_t Uint8; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
123 /** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
124 * \brief A signed 16-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
125 */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
126 typedef int16_t Sint16; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
127 /** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
128 * \brief An unsigned 16-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
129 */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
130 typedef uint16_t Uint16; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
131 /** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
132 * \brief A signed 32-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
133 */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
134 typedef int32_t Sint32; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
135 /** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
136 * \brief An unsigned 32-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
137 */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
138 typedef uint32_t Uint32; |
1357 | 139 |
140 #ifdef SDL_HAS_64BIT_TYPE | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
141 /** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
142 * \brief A signed 64-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
143 * \warning On platforms without any sort of 64-bit datatype, this is equivalent to Sint32! |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
144 */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
145 typedef int64_t Sint64; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
146 /** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
147 * \brief An unsigned 64-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
148 * \warning On platforms without any sort of 64-bit datatype, this is equivalent to Uint32! |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
149 */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
150 typedef uint64_t Uint64; |
1357 | 151 #else |
152 /* This is really just a hack to prevent the compiler from complaining */ | |
2048 | 153 typedef Sint32 Sint64; |
154 typedef Uint32 Uint64; | |
1357 | 155 #endif |
156 | |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
157 /*@}*//*Basic data types*/ |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
158 |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
159 |
1357 | 160 #define SDL_COMPILE_TIME_ASSERT(name, x) \ |
161 typedef int SDL_dummy_ ## name[(x) * 2 - 1] | |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
162 /** \cond */ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
163 #ifndef DOXYGEN_SHOULD_IGNORE_THIS |
1357 | 164 SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1); |
165 SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1); | |
166 SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2); | |
167 SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2); | |
168 SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); | |
169 SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4); | |
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
170 #ifndef __NINTENDODS__ /* TODO: figure out why the following happens: |
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
171 include/SDL_stdinc.h:150: error: size of array 'SDL_dummy_uint64' is negative |
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
172 include/SDL_stdinc.h:151: error: size of array 'SDL_dummy_sint64' is negative */ |
2707
6259afb046c5
Reverted Holmes' changes, they should be on the iphone branch
Sam Lantinga <slouken@libsdl.org>
parents:
2706
diff
changeset
|
173 SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8); |
6259afb046c5
Reverted Holmes' changes, they should be on the iphone branch
Sam Lantinga <slouken@libsdl.org>
parents:
2706
diff
changeset
|
174 SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); |
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
175 #endif |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
176 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
177 /** \endcond */ |
1357 | 178 |
179 /* Check to make sure enums are the size of ints, for structure packing. | |
180 For both Watcom C/C++ and Borland C/C++ the compiler option that makes | |
181 enums having the size of an int must be enabled. | |
182 This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). | |
183 */ | |
184 /* Enable enums always int in CodeWarrior (for MPW use "-enum int") */ | |
185 #ifdef __MWERKS__ | |
186 #pragma enumsalwaysint on | |
187 #endif | |
188 | |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
189 /** \cond */ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
190 #ifndef DOXYGEN_SHOULD_IGNORE_THIS |
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
191 #ifndef __NINTENDODS__ /* TODO: include/SDL_stdinc.h:174: error: size of array 'SDL_dummy_enum' is negative */ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
192 typedef enum |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
193 { |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
194 DUMMY_ENUM_VALUE |
1357 | 195 } SDL_DUMMY_ENUM; |
196 | |
197 SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int)); | |
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
198 #endif |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
199 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
200 /** \endcond */ |
1357 | 201 |
202 #include "begin_code.h" | |
203 /* Set up for C function definitions, even when using C++ */ | |
204 #ifdef __cplusplus | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
205 /* *INDENT-OFF* */ |
1357 | 206 extern "C" { |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
207 /* *INDENT-ON* */ |
1357 | 208 #endif |
209 | |
1626 | 210 #ifdef HAVE_MALLOC |
1357 | 211 #define SDL_malloc malloc |
212 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
213 extern DECLSPEC void *SDLCALL SDL_malloc(size_t size); |
1357 | 214 #endif |
215 | |
1626 | 216 #ifdef HAVE_CALLOC |
1357 | 217 #define SDL_calloc calloc |
218 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
219 extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size); |
1357 | 220 #endif |
221 | |
1626 | 222 #ifdef HAVE_REALLOC |
1357 | 223 #define SDL_realloc realloc |
224 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
225 extern DECLSPEC void *SDLCALL SDL_realloc(void *mem, size_t size); |
1357 | 226 #endif |
227 | |
1626 | 228 #ifdef HAVE_FREE |
1357 | 229 #define SDL_free free |
230 #else | |
231 extern DECLSPEC void SDLCALL SDL_free(void *mem); | |
232 #endif | |
233 | |
1626 | 234 #if defined(HAVE_ALLOCA) && !defined(alloca) |
235 # if defined(HAVE_ALLOCA_H) | |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
236 # include <alloca.h> |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1381
diff
changeset
|
237 # elif defined(__GNUC__) |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
238 # define alloca __builtin_alloca |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1381
diff
changeset
|
239 # elif defined(_MSC_VER) |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
240 # include <malloc.h> |
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
241 # define alloca _alloca |
1769 | 242 # elif defined(__WATCOMC__) |
243 # include <malloc.h> | |
2279
65bb3dd0b350
Merged revision 3458 from SDL 1.2, fixed Borland C alloca() prototype
Sam Lantinga <slouken@libsdl.org>
parents:
2157
diff
changeset
|
244 # elif defined(__BORLANDC__) |
65bb3dd0b350
Merged revision 3458 from SDL 1.2, fixed Borland C alloca() prototype
Sam Lantinga <slouken@libsdl.org>
parents:
2157
diff
changeset
|
245 # include <malloc.h> |
1870 | 246 # elif defined(__DMC__) |
247 # include <stdlib.h> | |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1381
diff
changeset
|
248 # elif defined(__AIX__) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
249 #pragma alloca |
1829
b98fd17b0b02
Fixed alloca declaration for MPW
Sam Lantinga <slouken@libsdl.org>
parents:
1769
diff
changeset
|
250 # elif defined(__MRC__) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
251 void *alloca(unsigned); |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
252 # else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
253 char *alloca(); |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
254 # endif |
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
255 #endif |
1626 | 256 #ifdef HAVE_ALLOCA |
2077
8bfba7ec379a
Merge r2918:2919 from 1.2 branch: alloca macro params in parentheses.
Ryan C. Gordon <icculus@icculus.org>
parents:
2048
diff
changeset
|
257 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) |
1357 | 258 #define SDL_stack_free(data) |
259 #else | |
2077
8bfba7ec379a
Merge r2918:2919 from 1.2 branch: alloca macro params in parentheses.
Ryan C. Gordon <icculus@icculus.org>
parents:
2048
diff
changeset
|
260 #define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count)) |
1357 | 261 #define SDL_stack_free(data) SDL_free(data) |
262 #endif | |
263 | |
1626 | 264 #ifdef HAVE_GETENV |
1357 | 265 #define SDL_getenv getenv |
266 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
267 extern DECLSPEC char *SDLCALL SDL_getenv(const char *name); |
1357 | 268 #endif |
269 | |
3567
fb9ea4b549c3
Added a warning comment to SDL_putenv().
Ryan C. Gordon <icculus@icculus.org>
parents:
3407
diff
changeset
|
270 /** |
fb9ea4b549c3
Added a warning comment to SDL_putenv().
Ryan C. Gordon <icculus@icculus.org>
parents:
3407
diff
changeset
|
271 * \warning On some platforms, the string you pass to SDL_putenv() becomes |
fb9ea4b549c3
Added a warning comment to SDL_putenv().
Ryan C. Gordon <icculus@icculus.org>
parents:
3407
diff
changeset
|
272 * part of the environment table directly...it will use this specific |
fb9ea4b549c3
Added a warning comment to SDL_putenv().
Ryan C. Gordon <icculus@icculus.org>
parents:
3407
diff
changeset
|
273 * buffer, and not a copy of it! This means you can't free it, and |
fb9ea4b549c3
Added a warning comment to SDL_putenv().
Ryan C. Gordon <icculus@icculus.org>
parents:
3407
diff
changeset
|
274 * other pieces of code may try to write to it. In practice, this |
fb9ea4b549c3
Added a warning comment to SDL_putenv().
Ryan C. Gordon <icculus@icculus.org>
parents:
3407
diff
changeset
|
275 * isn't a big deal, but be aware of the possibility. |
fb9ea4b549c3
Added a warning comment to SDL_putenv().
Ryan C. Gordon <icculus@icculus.org>
parents:
3407
diff
changeset
|
276 * However, due to this issue, you should be prepared to |
fb9ea4b549c3
Added a warning comment to SDL_putenv().
Ryan C. Gordon <icculus@icculus.org>
parents:
3407
diff
changeset
|
277 * pass a (char*), or be willing to cast away the constness of your |
fb9ea4b549c3
Added a warning comment to SDL_putenv().
Ryan C. Gordon <icculus@icculus.org>
parents:
3407
diff
changeset
|
278 * string for this call. |
fb9ea4b549c3
Added a warning comment to SDL_putenv().
Ryan C. Gordon <icculus@icculus.org>
parents:
3407
diff
changeset
|
279 */ |
1626 | 280 #ifdef HAVE_PUTENV |
1357 | 281 #define SDL_putenv putenv |
282 #else | |
283 extern DECLSPEC int SDLCALL SDL_putenv(const char *variable); | |
284 #endif | |
285 | |
1626 | 286 #ifdef HAVE_QSORT |
1357 | 287 #define SDL_qsort qsort |
288 #else | |
289 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
290 int (*compare) (const void *, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
291 const void *)); |
1357 | 292 #endif |
293 | |
1626 | 294 #ifdef HAVE_ABS |
1357 | 295 #define SDL_abs abs |
296 #else | |
297 #define SDL_abs(X) ((X) < 0 ? -(X) : (X)) | |
298 #endif | |
299 | |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
300 #define SDL_min(x, y) (((x) < (y)) ? (x) : (y)) |
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
301 #define SDL_max(x, y) (((x) > (y)) ? (x) : (y)) |
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
302 |
1626 | 303 #ifdef HAVE_CTYPE_H |
1357 | 304 #define SDL_isdigit(X) isdigit(X) |
305 #define SDL_isspace(X) isspace(X) | |
306 #define SDL_toupper(X) toupper(X) | |
307 #define SDL_tolower(X) tolower(X) | |
308 #else | |
309 #define SDL_isdigit(X) (((X) >= '0') && ((X) <= '9')) | |
310 #define SDL_isspace(X) (((X) == ' ') || ((X) == '\t') || ((X) == '\r') || ((X) == '\n')) | |
311 #define SDL_toupper(X) (((X) >= 'a') && ((X) <= 'z') ? ('A'+((X)-'a')) : (X)) | |
312 #define SDL_tolower(X) (((X) >= 'A') && ((X) <= 'Z') ? ('a'+((X)-'A')) : (X)) | |
313 #endif | |
314 | |
1626 | 315 #ifdef HAVE_MEMSET |
1357 | 316 #define SDL_memset memset |
317 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
318 extern DECLSPEC void *SDLCALL SDL_memset(void *dst, int c, size_t len); |
1357 | 319 #endif |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
320 #define SDL_zero(x) SDL_memset(&(x), 0, sizeof((x))) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
321 #define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x))) |
1357 | 322 |
2157 | 323 #if defined(__GNUC__) && defined(i386) |
1357 | 324 #define SDL_memset4(dst, val, len) \ |
325 do { \ | |
326 int u0, u1, u2; \ | |
327 __asm__ __volatile__ ( \ | |
328 "cld\n\t" \ | |
329 "rep ; stosl\n\t" \ | |
330 : "=&D" (u0), "=&a" (u1), "=&c" (u2) \ | |
3067 | 331 : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, len)) \ |
1357 | 332 : "memory" ); \ |
333 } while(0) | |
334 #endif | |
335 #ifndef SDL_memset4 | |
336 #define SDL_memset4(dst, val, len) \ | |
337 do { \ | |
338 unsigned _count = (len); \ | |
339 unsigned _n = (_count + 3) / 4; \ | |
3067 | 340 Uint32 *_p = SDL_static_cast(Uint32 *, dst); \ |
1357 | 341 Uint32 _val = (val); \ |
3234 | 342 if (len == 0) break; \ |
1357 | 343 switch (_count % 4) { \ |
344 case 0: do { *_p++ = _val; \ | |
345 case 3: *_p++ = _val; \ | |
346 case 2: *_p++ = _val; \ | |
347 case 1: *_p++ = _val; \ | |
348 } while ( --_n ); \ | |
349 } \ | |
350 } while(0) | |
351 #endif | |
352 | |
2111
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
353 /* We can count on memcpy existing on Mac OS X and being well-tuned. */ |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
354 #if defined(__MACH__) && defined(__APPLE__) |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
355 #define SDL_memcpy(dst, src, len) memcpy(dst, src, len) |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
356 #elif defined(__GNUC__) && defined(i386) |
1357 | 357 #define SDL_memcpy(dst, src, len) \ |
358 do { \ | |
359 int u0, u1, u2; \ | |
360 __asm__ __volatile__ ( \ | |
361 "cld\n\t" \ | |
362 "rep ; movsl\n\t" \ | |
363 "testb $2,%b4\n\t" \ | |
364 "je 1f\n\t" \ | |
365 "movsw\n" \ | |
366 "1:\ttestb $1,%b4\n\t" \ | |
367 "je 2f\n\t" \ | |
368 "movsb\n" \ | |
369 "2:" \ | |
370 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \ | |
3067 | 371 : "0" (SDL_static_cast(unsigned, len)/4), "q" (len), "1" (dst),"2" (src) \ |
1357 | 372 : "memory" ); \ |
373 } while(0) | |
374 #endif | |
375 #ifndef SDL_memcpy | |
1626 | 376 #ifdef HAVE_MEMCPY |
1357 | 377 #define SDL_memcpy memcpy |
1626 | 378 #elif defined(HAVE_BCOPY) |
1357 | 379 #define SDL_memcpy(d, s, n) bcopy((s), (d), (n)) |
380 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
381 extern DECLSPEC void *SDLCALL SDL_memcpy(void *dst, const void *src, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
382 size_t len); |
1357 | 383 #endif |
384 #endif | |
385 | |
2111
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
386 /* We can count on memcpy existing on Mac OS X and being well-tuned. */ |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
387 #if defined(__MACH__) && defined(__APPLE__) |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
388 #define SDL_memcpy4(dst, src, len) memcpy(dst, src, (len)*4) |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
389 #elif defined(__GNUC__) && defined(i386) |
1357 | 390 #define SDL_memcpy4(dst, src, len) \ |
391 do { \ | |
392 int ecx, edi, esi; \ | |
393 __asm__ __volatile__ ( \ | |
394 "cld\n\t" \ | |
395 "rep ; movsl" \ | |
396 : "=&c" (ecx), "=&D" (edi), "=&S" (esi) \ | |
3067 | 397 : "0" (SDL_static_cast(unsigned, len)), "1" (dst), "2" (src) \ |
1357 | 398 : "memory" ); \ |
399 } while(0) | |
400 #endif | |
401 #ifndef SDL_memcpy4 | |
402 #define SDL_memcpy4(dst, src, len) SDL_memcpy(dst, src, (len) << 2) | |
403 #endif | |
404 | |
405 #if defined(__GNUC__) && defined(i386) | |
406 #define SDL_revcpy(dst, src, len) \ | |
407 do { \ | |
408 int u0, u1, u2; \ | |
3067 | 409 char *dstp = SDL_static_cast(char *, dst); \ |
410 char *srcp = SDL_static_cast(char *, src); \ | |
1357 | 411 int n = (len); \ |
412 if ( n >= 4 ) { \ | |
413 __asm__ __volatile__ ( \ | |
414 "std\n\t" \ | |
415 "rep ; movsl\n\t" \ | |
2302
7ae1c419b626
Merged r3534:3535 from branches/SDL-1.2: Reset direction flag in SDL_revcpy().
Ryan C. Gordon <icculus@icculus.org>
parents:
2279
diff
changeset
|
416 "cld\n\t" \ |
1357 | 417 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \ |
418 : "0" (n >> 2), \ | |
419 "1" (dstp+(n-4)), "2" (srcp+(n-4)) \ | |
420 : "memory" ); \ | |
421 } \ | |
422 switch (n & 3) { \ | |
423 case 3: dstp[2] = srcp[2]; \ | |
424 case 2: dstp[1] = srcp[1]; \ | |
425 case 1: dstp[0] = srcp[0]; \ | |
426 break; \ | |
427 default: \ | |
428 break; \ | |
429 } \ | |
430 } while(0) | |
431 #endif | |
432 #ifndef SDL_revcpy | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
433 extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
434 size_t len); |
1357 | 435 #endif |
436 | |
1626 | 437 #ifdef HAVE_MEMMOVE |
1357 | 438 #define SDL_memmove memmove |
1626 | 439 #elif defined(HAVE_BCOPY) |
1357 | 440 #define SDL_memmove(d, s, n) bcopy((s), (d), (n)) |
441 #else | |
442 #define SDL_memmove(dst, src, len) \ | |
443 do { \ | |
444 if ( dst < src ) { \ | |
445 SDL_memcpy(dst, src, len); \ | |
446 } else { \ | |
447 SDL_revcpy(dst, src, len); \ | |
448 } \ | |
449 } while(0) | |
450 #endif | |
451 | |
1626 | 452 #ifdef HAVE_MEMCMP |
1357 | 453 #define SDL_memcmp memcmp |
454 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
455 extern DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
456 size_t len); |
1357 | 457 #endif |
458 | |
1626 | 459 #ifdef HAVE_STRLEN |
1357 | 460 #define SDL_strlen strlen |
461 #else | |
462 extern DECLSPEC size_t SDLCALL SDL_strlen(const char *string); | |
463 #endif | |
464 | |
1901
f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
465 #ifdef HAVE_WCSLEN |
f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
466 #define SDL_wcslen wcslen |
f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
467 #else |
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
468 #if !defined(wchar_t) && defined(__NINTENDODS__) |
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
469 #define wchar_t short /* TODO: figure out why libnds doesn't have this */ |
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
470 #endif |
1903
f132024010be
More of the Direct3D renderer is implemented, I'm not sure why it's not showing texture copies yet...
Sam Lantinga <slouken@libsdl.org>
parents:
1901
diff
changeset
|
471 extern DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t * string); |
1901
f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
472 #endif |
f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
473 |
1626 | 474 #ifdef HAVE_STRLCPY |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
475 #define SDL_strlcpy strlcpy |
1357 | 476 #else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
477 extern DECLSPEC size_t SDLCALL SDL_strlcpy(char *dst, const char *src, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
478 size_t maxlen); |
1357 | 479 #endif |
480 | |
1626 | 481 #ifdef HAVE_STRLCAT |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
482 #define SDL_strlcat strlcat |
1357 | 483 #else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
484 extern DECLSPEC size_t SDLCALL SDL_strlcat(char *dst, const char *src, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
485 size_t maxlen); |
1357 | 486 #endif |
487 | |
1626 | 488 #ifdef HAVE_STRDUP |
1357 | 489 #define SDL_strdup strdup |
490 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
491 extern DECLSPEC char *SDLCALL SDL_strdup(const char *string); |
1357 | 492 #endif |
493 | |
1626 | 494 #ifdef HAVE__STRREV |
1357 | 495 #define SDL_strrev _strrev |
496 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
497 extern DECLSPEC char *SDLCALL SDL_strrev(char *string); |
1357 | 498 #endif |
499 | |
1626 | 500 #ifdef HAVE__STRUPR |
1357 | 501 #define SDL_strupr _strupr |
502 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
503 extern DECLSPEC char *SDLCALL SDL_strupr(char *string); |
1357 | 504 #endif |
505 | |
1626 | 506 #ifdef HAVE__STRLWR |
1357 | 507 #define SDL_strlwr _strlwr |
508 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
509 extern DECLSPEC char *SDLCALL SDL_strlwr(char *string); |
1357 | 510 #endif |
511 | |
1626 | 512 #ifdef HAVE_STRCHR |
1357 | 513 #define SDL_strchr strchr |
1626 | 514 #elif defined(HAVE_INDEX) |
1357 | 515 #define SDL_strchr index |
516 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
517 extern DECLSPEC char *SDLCALL SDL_strchr(const char *string, int c); |
1357 | 518 #endif |
519 | |
1626 | 520 #ifdef HAVE_STRRCHR |
1357 | 521 #define SDL_strrchr strrchr |
1626 | 522 #elif defined(HAVE_RINDEX) |
1357 | 523 #define SDL_strrchr rindex |
524 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
525 extern DECLSPEC char *SDLCALL SDL_strrchr(const char *string, int c); |
1357 | 526 #endif |
527 | |
1626 | 528 #ifdef HAVE_STRSTR |
1357 | 529 #define SDL_strstr strstr |
530 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
531 extern DECLSPEC char *SDLCALL SDL_strstr(const char *haystack, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
532 const char *needle); |
1357 | 533 #endif |
534 | |
1626 | 535 #ifdef HAVE_ITOA |
1357 | 536 #define SDL_itoa itoa |
537 #else | |
538 #define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix) | |
539 #endif | |
540 | |
1626 | 541 #ifdef HAVE__LTOA |
1357 | 542 #define SDL_ltoa _ltoa |
543 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
544 extern DECLSPEC char *SDLCALL SDL_ltoa(long value, char *string, int radix); |
1357 | 545 #endif |
546 | |
1626 | 547 #ifdef HAVE__UITOA |
1357 | 548 #define SDL_uitoa _uitoa |
549 #else | |
550 #define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix) | |
551 #endif | |
552 | |
1626 | 553 #ifdef HAVE__ULTOA |
1357 | 554 #define SDL_ultoa _ultoa |
555 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
556 extern DECLSPEC char *SDLCALL SDL_ultoa(unsigned long value, char *string, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
557 int radix); |
1357 | 558 #endif |
559 | |
1626 | 560 #ifdef HAVE_STRTOL |
1357 | 561 #define SDL_strtol strtol |
562 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
563 extern DECLSPEC long SDLCALL SDL_strtol(const char *string, char **endp, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
564 int base); |
1357 | 565 #endif |
566 | |
1626 | 567 #ifdef HAVE_STRTOUL |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
568 #define SDL_strtoul strtoul |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
569 #else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
570 extern DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *string, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
571 char **endp, int base); |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
572 #endif |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
573 |
1626 | 574 #ifdef SDL_HAS_64BIT_TYPE |
1357 | 575 |
1626 | 576 #ifdef HAVE__I64TOA |
1357 | 577 #define SDL_lltoa _i64toa |
578 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
579 extern DECLSPEC char *SDLCALL SDL_lltoa(Sint64 value, char *string, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
580 int radix); |
1357 | 581 #endif |
582 | |
1626 | 583 #ifdef HAVE__UI64TOA |
1357 | 584 #define SDL_ulltoa _ui64toa |
585 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
586 extern DECLSPEC char *SDLCALL SDL_ulltoa(Uint64 value, char *string, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
587 int radix); |
1357 | 588 #endif |
589 | |
1626 | 590 #ifdef HAVE_STRTOLL |
1357 | 591 #define SDL_strtoll strtoll |
592 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
593 extern DECLSPEC Sint64 SDLCALL SDL_strtoll(const char *string, char **endp, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
594 int base); |
1357 | 595 #endif |
596 | |
1626 | 597 #ifdef HAVE_STRTOULL |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
598 #define SDL_strtoull strtoull |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
599 #else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
600 extern DECLSPEC Uint64 SDLCALL SDL_strtoull(const char *string, char **endp, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
601 int base); |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
602 #endif |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
603 |
1357 | 604 #endif /* SDL_HAS_64BIT_TYPE */ |
605 | |
1626 | 606 #ifdef HAVE_STRTOD |
1357 | 607 #define SDL_strtod strtod |
608 #else | |
609 extern DECLSPEC double SDLCALL SDL_strtod(const char *string, char **endp); | |
610 #endif | |
611 | |
1626 | 612 #ifdef HAVE_ATOI |
1357 | 613 #define SDL_atoi atoi |
614 #else | |
615 #define SDL_atoi(X) SDL_strtol(X, NULL, 0) | |
616 #endif | |
617 | |
1626 | 618 #ifdef HAVE_ATOF |
1357 | 619 #define SDL_atof atof |
620 #else | |
621 #define SDL_atof(X) SDL_strtod(X, NULL) | |
622 #endif | |
623 | |
1626 | 624 #ifdef HAVE_STRCMP |
1357 | 625 #define SDL_strcmp strcmp |
626 #else | |
627 extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); | |
628 #endif | |
629 | |
1626 | 630 #ifdef HAVE_STRNCMP |
1357 | 631 #define SDL_strncmp strncmp |
632 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
633 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
634 size_t maxlen); |
1357 | 635 #endif |
636 | |
1626 | 637 #ifdef HAVE_STRCASECMP |
1357 | 638 #define SDL_strcasecmp strcasecmp |
1626 | 639 #elif defined(HAVE__STRICMP) |
1510 | 640 #define SDL_strcasecmp _stricmp |
1357 | 641 #else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
642 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
643 const char *str2); |
1357 | 644 #endif |
645 | |
1626 | 646 #ifdef HAVE_STRNCASECMP |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
647 #define SDL_strncasecmp strncasecmp |
1626 | 648 #elif defined(HAVE__STRNICMP) |
1512 | 649 #define SDL_strncasecmp _strnicmp |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
650 #else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
651 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
652 const char *str2, size_t maxlen); |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
653 #endif |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
654 |
1626 | 655 #ifdef HAVE_SSCANF |
1357 | 656 #define SDL_sscanf sscanf |
657 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
658 extern DECLSPEC int SDLCALL SDL_sscanf(const char *text, const char *fmt, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
659 ...); |
1357 | 660 #endif |
661 | |
1626 | 662 #ifdef HAVE_SNPRINTF |
1357 | 663 #define SDL_snprintf snprintf |
664 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
665 extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
666 const char *fmt, ...); |
1357 | 667 #endif |
668 | |
1626 | 669 #ifdef HAVE_VSNPRINTF |
1357 | 670 #define SDL_vsnprintf vsnprintf |
671 #else | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
672 extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
673 const char *fmt, va_list ap); |
1357 | 674 #endif |
675 | |
3012
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
676 #ifndef HAVE_M_PI |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
677 #define M_PI 3.14159265358979323846264338327950288 /* pi */ |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
678 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
679 |
3032 | 680 #ifdef HAVE_CEIL |
681 #define SDL_ceil ceil | |
682 #else | |
683 #define SDL_ceil(x) ((double)(int)((x)+0.5)) | |
684 #endif | |
685 | |
3012
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
686 #ifdef HAVE_COPYSIGN |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
687 #define SDL_copysign copysign |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
688 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
689 extern DECLSPEC double SDLCALL SDL_copysign(double x, double y); |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
690 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
691 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
692 #ifdef HAVE_COS |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
693 #define SDL_cos cos |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
694 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
695 extern DECLSPEC double SDLCALL SDL_cos(double x); |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
696 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
697 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
698 #ifdef HAVE_COSF |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
699 #define SDL_cosf cosf |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
700 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
701 #define SDL_cosf(x) (float)SDL_cos((double)x) |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
702 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
703 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
704 #ifdef HAVE_FABS |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
705 #define SDL_fabs fabs |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
706 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
707 extern DECLSPEC double SDLCALL SDL_fabs(double x); |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
708 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
709 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
710 #ifdef HAVE_FLOOR |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
711 #define SDL_floor floor |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
712 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
713 extern DECLSPEC double SDLCALL SDL_floor(double x); |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
714 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
715 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
716 #ifdef HAVE_LOG |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
717 #define SDL_log log |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
718 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
719 extern DECLSPEC double SDLCALL SDL_log(double x); |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
720 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
721 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
722 #ifdef HAVE_POW |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
723 #define SDL_pow pow |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
724 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
725 extern DECLSPEC double SDLCALL SDL_pow(double x, double y); |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
726 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
727 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
728 #ifdef HAVE_SCALBN |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
729 #define SDL_scalbn scalbn |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
730 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
731 extern DECLSPEC double SDLCALL SDL_scalbn(double x, int n); |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
732 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
733 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
734 #ifdef HAVE_SIN |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
735 #define SDL_sin sin |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
736 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
737 extern DECLSPEC double SDLCALL SDL_sin(double x); |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
738 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
739 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
740 #ifdef HAVE_SINF |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
741 #define SDL_sinf sinf |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
742 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
743 #define SDL_sinf(x) (float)SDL_sin((double)x) |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
744 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
745 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
746 #ifdef HAVE_SQRT |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
747 #define SDL_sqrt sqrt |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
748 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
749 extern DECLSPEC double SDLCALL SDL_sqrt(double x); |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
750 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
751 |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
752 /* The SDL implementation of iconv() returns these error codes */ |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
753 #define SDL_ICONV_ERROR (size_t)-1 |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
754 #define SDL_ICONV_E2BIG (size_t)-2 |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
755 #define SDL_ICONV_EILSEQ (size_t)-3 |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
756 #define SDL_ICONV_EINVAL (size_t)-4 |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
757 |
3295
4ff84e8939c1
Whoops, need both the header and the library!
Sam Lantinga <slouken@libsdl.org>
parents:
3294
diff
changeset
|
758 #if defined(HAVE_ICONV) && defined(HAVE_ICONV_H) |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
759 #define SDL_iconv_t iconv_t |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
760 #define SDL_iconv_open iconv_open |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
761 #define SDL_iconv_close iconv_close |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
762 #else |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
763 typedef struct _SDL_iconv_t *SDL_iconv_t; |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
764 extern DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
765 const char *fromcode); |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
766 extern DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd); |
2135
0313af081a84
Merge iconv const changes from 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2111
diff
changeset
|
767 #endif |
0313af081a84
Merge iconv const changes from 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2111
diff
changeset
|
768 extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf, |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
769 size_t * inbytesleft, char **outbuf, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
770 size_t * outbytesleft); |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
771 /** |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
772 * This function converts a string between encodings in one pass, returning a |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
773 * string that must be freed with SDL_free() or NULL on error. |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
774 */ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
775 extern DECLSPEC char *SDLCALL SDL_iconv_string(const char *tocode, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
776 const char *fromcode, |
2135
0313af081a84
Merge iconv const changes from 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2111
diff
changeset
|
777 const char *inbuf, |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
778 size_t inbytesleft); |
2143
e906da4414a3
Fix for bug #447 merged from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2142
diff
changeset
|
779 #define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1) |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
780 #define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1) |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
781 #define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1) |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
782 |
1357 | 783 /* Ends C function definitions when using C++ */ |
784 #ifdef __cplusplus | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
785 /* *INDENT-OFF* */ |
1357 | 786 } |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
787 /* *INDENT-ON* */ |
1357 | 788 #endif |
789 #include "close_code.h" | |
790 | |
791 #endif /* _SDL_stdinc_h */ | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
792 |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
793 /* vi: set ts=4 sw=4 expandtab: */ |