Mercurial > sdl-ios-xcode
annotate include/SDL_stdinc.h @ 4729:1f7ad083fd3c
Merged Paul's Google Summer of Code work from SDL-gsoc2010_android
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 22 Aug 2010 12:23:55 -0700 |
parents | bff93336121e a5c4ded0c979 |
children | 518d1679d2d0 |
rev | line source |
---|---|
1357 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
3697 | 3 Copyright (C) 1997-2010 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 |
4492 | 104 /* Define a four character code as a Uint32 */ |
105 #define SDL_FOURCC(A, B, C, D) \ | |
106 ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \ | |
107 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \ | |
108 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \ | |
109 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24)) | |
110 | |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
111 /** |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
112 * \name Basic data types |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
113 */ |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
114 /*@{*/ |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
115 |
3365
9cd5b35c0184
Made typedef for SDL_bool the same as the other typedefs.
Sam Lantinga <slouken@libsdl.org>
parents:
3295
diff
changeset
|
116 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
|
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 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
|
119 SDL_TRUE = 1 |
1357 | 120 } SDL_bool; |
121 | |
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
|
122 /** |
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 * \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
|
124 */ |
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 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
|
126 /** |
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 * \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
|
128 */ |
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 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
|
130 /** |
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 * \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
|
132 */ |
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 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
|
134 /** |
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 * \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
|
136 */ |
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 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
|
138 /** |
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
|
139 * \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
|
140 */ |
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 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
|
142 /** |
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 * \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
|
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 uint32_t Uint32; |
1357 | 146 |
147 #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
|
148 /** |
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 * \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
|
150 * \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
|
151 */ |
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
|
152 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
|
153 /** |
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
|
154 * \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
|
155 * \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
|
156 */ |
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
|
157 typedef uint64_t Uint64; |
1357 | 158 #else |
159 /* This is really just a hack to prevent the compiler from complaining */ | |
2048 | 160 typedef Sint32 Sint64; |
161 typedef Uint32 Uint64; | |
1357 | 162 #endif |
163 | |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
164 /*@}*//*Basic data types*/ |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
165 |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
166 |
1357 | 167 #define SDL_COMPILE_TIME_ASSERT(name, x) \ |
168 typedef int SDL_dummy_ ## name[(x) * 2 - 1] | |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
169 /** \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
|
170 #ifndef DOXYGEN_SHOULD_IGNORE_THIS |
1357 | 171 SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1); |
172 SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1); | |
173 SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2); | |
174 SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2); | |
175 SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); | |
176 SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4); | |
4697
a5c4ded0c979
Fix compile errors under Android toolchain. Seems to have the same issue as the NDS.
Paul Hunkin <paul@bieh.net>
parents:
3697
diff
changeset
|
177 #if !defined(__NINTENDODS__) && !defined(__ANDROID__) |
a5c4ded0c979
Fix compile errors under Android toolchain. Seems to have the same issue as the NDS.
Paul Hunkin <paul@bieh.net>
parents:
3697
diff
changeset
|
178 /* TODO: figure out why the following happens: |
a5c4ded0c979
Fix compile errors under Android toolchain. Seems to have the same issue as the NDS.
Paul Hunkin <paul@bieh.net>
parents:
3697
diff
changeset
|
179 include/SDL_stdinc.h:150: error: size of array 'SDL_dummy_uint64' is negative |
a5c4ded0c979
Fix compile errors under Android toolchain. Seems to have the same issue as the NDS.
Paul Hunkin <paul@bieh.net>
parents:
3697
diff
changeset
|
180 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
|
181 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
|
182 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
|
183 #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
|
184 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
185 /** \endcond */ |
1357 | 186 |
187 /* Check to make sure enums are the size of ints, for structure packing. | |
188 For both Watcom C/C++ and Borland C/C++ the compiler option that makes | |
189 enums having the size of an int must be enabled. | |
190 This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). | |
191 */ | |
192 /* Enable enums always int in CodeWarrior (for MPW use "-enum int") */ | |
193 #ifdef __MWERKS__ | |
194 #pragma enumsalwaysint on | |
195 #endif | |
196 | |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
197 /** \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
|
198 #ifndef DOXYGEN_SHOULD_IGNORE_THIS |
4697
a5c4ded0c979
Fix compile errors under Android toolchain. Seems to have the same issue as the NDS.
Paul Hunkin <paul@bieh.net>
parents:
3697
diff
changeset
|
199 #if !defined(__NINTENDODS__) && !defined(__ANDROID__) |
a5c4ded0c979
Fix compile errors under Android toolchain. Seems to have the same issue as the NDS.
Paul Hunkin <paul@bieh.net>
parents:
3697
diff
changeset
|
200 /* 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
|
201 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
|
202 { |
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
|
203 DUMMY_ENUM_VALUE |
1357 | 204 } SDL_DUMMY_ENUM; |
205 | |
206 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
|
207 #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
|
208 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
209 /** \endcond */ |
1357 | 210 |
211 #include "begin_code.h" | |
212 /* Set up for C function definitions, even when using C++ */ | |
213 #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
|
214 /* *INDENT-OFF* */ |
1357 | 215 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
|
216 /* *INDENT-ON* */ |
1357 | 217 #endif |
218 | |
1626 | 219 #ifdef HAVE_MALLOC |
1357 | 220 #define SDL_malloc malloc |
221 #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
|
222 extern DECLSPEC void *SDLCALL SDL_malloc(size_t size); |
1357 | 223 #endif |
224 | |
1626 | 225 #ifdef HAVE_CALLOC |
1357 | 226 #define SDL_calloc calloc |
227 #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
|
228 extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size); |
1357 | 229 #endif |
230 | |
1626 | 231 #ifdef HAVE_REALLOC |
1357 | 232 #define SDL_realloc realloc |
233 #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
|
234 extern DECLSPEC void *SDLCALL SDL_realloc(void *mem, size_t size); |
1357 | 235 #endif |
236 | |
1626 | 237 #ifdef HAVE_FREE |
1357 | 238 #define SDL_free free |
239 #else | |
240 extern DECLSPEC void SDLCALL SDL_free(void *mem); | |
241 #endif | |
242 | |
1626 | 243 #if defined(HAVE_ALLOCA) && !defined(alloca) |
244 # if defined(HAVE_ALLOCA_H) | |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
245 # include <alloca.h> |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1381
diff
changeset
|
246 # elif defined(__GNUC__) |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
247 # define alloca __builtin_alloca |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1381
diff
changeset
|
248 # elif defined(_MSC_VER) |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
249 # include <malloc.h> |
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
250 # define alloca _alloca |
1769 | 251 # elif defined(__WATCOMC__) |
252 # 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
|
253 # 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
|
254 # include <malloc.h> |
1870 | 255 # elif defined(__DMC__) |
256 # include <stdlib.h> | |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1381
diff
changeset
|
257 # 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
|
258 #pragma alloca |
1829
b98fd17b0b02
Fixed alloca declaration for MPW
Sam Lantinga <slouken@libsdl.org>
parents:
1769
diff
changeset
|
259 # 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
|
260 void *alloca(unsigned); |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
261 # 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
|
262 char *alloca(); |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
263 # endif |
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
264 #endif |
1626 | 265 #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
|
266 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) |
1357 | 267 #define SDL_stack_free(data) |
268 #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
|
269 #define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count)) |
1357 | 270 #define SDL_stack_free(data) SDL_free(data) |
271 #endif | |
272 | |
1626 | 273 #ifdef HAVE_GETENV |
1357 | 274 #define SDL_getenv getenv |
275 #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
|
276 extern DECLSPEC char *SDLCALL SDL_getenv(const char *name); |
1357 | 277 #endif |
278 | |
3581
15eea7a1fa97
Implemented SDL_setenv(), moved SDL_putenv() to compat.
Ryan C. Gordon <icculus@icculus.org>
parents:
3567
diff
changeset
|
279 /* SDL_putenv() has moved to SDL_compat. */ |
15eea7a1fa97
Implemented SDL_setenv(), moved SDL_putenv() to compat.
Ryan C. Gordon <icculus@icculus.org>
parents:
3567
diff
changeset
|
280 #ifdef HAVE_SETENV |
15eea7a1fa97
Implemented SDL_setenv(), moved SDL_putenv() to compat.
Ryan C. Gordon <icculus@icculus.org>
parents:
3567
diff
changeset
|
281 #define SDL_setenv setenv |
1357 | 282 #else |
3581
15eea7a1fa97
Implemented SDL_setenv(), moved SDL_putenv() to compat.
Ryan C. Gordon <icculus@icculus.org>
parents:
3567
diff
changeset
|
283 extern DECLSPEC int SDLCALL SDL_setenv(const char *name, const char *value, |
15eea7a1fa97
Implemented SDL_setenv(), moved SDL_putenv() to compat.
Ryan C. Gordon <icculus@icculus.org>
parents:
3567
diff
changeset
|
284 int overwrite); |
1357 | 285 #endif |
286 | |
1626 | 287 #ifdef HAVE_QSORT |
1357 | 288 #define SDL_qsort qsort |
289 #else | |
290 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
|
291 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
|
292 const void *)); |
1357 | 293 #endif |
294 | |
1626 | 295 #ifdef HAVE_ABS |
1357 | 296 #define SDL_abs abs |
297 #else | |
298 #define SDL_abs(X) ((X) < 0 ? -(X) : (X)) | |
299 #endif | |
300 | |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
301 #define SDL_min(x, y) (((x) < (y)) ? (x) : (y)) |
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
302 #define SDL_max(x, y) (((x) > (y)) ? (x) : (y)) |
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
303 |
1626 | 304 #ifdef HAVE_CTYPE_H |
1357 | 305 #define SDL_isdigit(X) isdigit(X) |
306 #define SDL_isspace(X) isspace(X) | |
307 #define SDL_toupper(X) toupper(X) | |
308 #define SDL_tolower(X) tolower(X) | |
309 #else | |
310 #define SDL_isdigit(X) (((X) >= '0') && ((X) <= '9')) | |
311 #define SDL_isspace(X) (((X) == ' ') || ((X) == '\t') || ((X) == '\r') || ((X) == '\n')) | |
312 #define SDL_toupper(X) (((X) >= 'a') && ((X) <= 'z') ? ('A'+((X)-'a')) : (X)) | |
313 #define SDL_tolower(X) (((X) >= 'A') && ((X) <= 'Z') ? ('a'+((X)-'A')) : (X)) | |
314 #endif | |
315 | |
1626 | 316 #ifdef HAVE_MEMSET |
1357 | 317 #define SDL_memset memset |
318 #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
|
319 extern DECLSPEC void *SDLCALL SDL_memset(void *dst, int c, size_t len); |
1357 | 320 #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
|
321 #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
|
322 #define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x))) |
1357 | 323 |
2157 | 324 #if defined(__GNUC__) && defined(i386) |
1357 | 325 #define SDL_memset4(dst, val, len) \ |
326 do { \ | |
327 int u0, u1, u2; \ | |
328 __asm__ __volatile__ ( \ | |
329 "cld\n\t" \ | |
330 "rep ; stosl\n\t" \ | |
331 : "=&D" (u0), "=&a" (u1), "=&c" (u2) \ | |
3067 | 332 : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, len)) \ |
1357 | 333 : "memory" ); \ |
334 } while(0) | |
335 #endif | |
336 #ifndef SDL_memset4 | |
337 #define SDL_memset4(dst, val, len) \ | |
338 do { \ | |
339 unsigned _count = (len); \ | |
340 unsigned _n = (_count + 3) / 4; \ | |
3067 | 341 Uint32 *_p = SDL_static_cast(Uint32 *, dst); \ |
1357 | 342 Uint32 _val = (val); \ |
3234 | 343 if (len == 0) break; \ |
1357 | 344 switch (_count % 4) { \ |
345 case 0: do { *_p++ = _val; \ | |
346 case 3: *_p++ = _val; \ | |
347 case 2: *_p++ = _val; \ | |
348 case 1: *_p++ = _val; \ | |
349 } while ( --_n ); \ | |
350 } \ | |
351 } while(0) | |
352 #endif | |
353 | |
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
|
354 /* 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
|
355 #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
|
356 #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
|
357 #elif defined(__GNUC__) && defined(i386) |
1357 | 358 #define SDL_memcpy(dst, src, len) \ |
359 do { \ | |
360 int u0, u1, u2; \ | |
361 __asm__ __volatile__ ( \ | |
362 "cld\n\t" \ | |
363 "rep ; movsl\n\t" \ | |
364 "testb $2,%b4\n\t" \ | |
365 "je 1f\n\t" \ | |
366 "movsw\n" \ | |
367 "1:\ttestb $1,%b4\n\t" \ | |
368 "je 2f\n\t" \ | |
369 "movsb\n" \ | |
370 "2:" \ | |
371 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \ | |
3067 | 372 : "0" (SDL_static_cast(unsigned, len)/4), "q" (len), "1" (dst),"2" (src) \ |
1357 | 373 : "memory" ); \ |
374 } while(0) | |
375 #endif | |
376 #ifndef SDL_memcpy | |
1626 | 377 #ifdef HAVE_MEMCPY |
1357 | 378 #define SDL_memcpy memcpy |
1626 | 379 #elif defined(HAVE_BCOPY) |
1357 | 380 #define SDL_memcpy(d, s, n) bcopy((s), (d), (n)) |
381 #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
|
382 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
|
383 size_t len); |
1357 | 384 #endif |
385 #endif | |
386 | |
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
|
387 /* 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
|
388 #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
|
389 #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
|
390 #elif defined(__GNUC__) && defined(i386) |
1357 | 391 #define SDL_memcpy4(dst, src, len) \ |
392 do { \ | |
393 int ecx, edi, esi; \ | |
394 __asm__ __volatile__ ( \ | |
395 "cld\n\t" \ | |
396 "rep ; movsl" \ | |
397 : "=&c" (ecx), "=&D" (edi), "=&S" (esi) \ | |
3067 | 398 : "0" (SDL_static_cast(unsigned, len)), "1" (dst), "2" (src) \ |
1357 | 399 : "memory" ); \ |
400 } while(0) | |
401 #endif | |
402 #ifndef SDL_memcpy4 | |
403 #define SDL_memcpy4(dst, src, len) SDL_memcpy(dst, src, (len) << 2) | |
404 #endif | |
405 | |
406 #if defined(__GNUC__) && defined(i386) | |
407 #define SDL_revcpy(dst, src, len) \ | |
408 do { \ | |
409 int u0, u1, u2; \ | |
3067 | 410 char *dstp = SDL_static_cast(char *, dst); \ |
411 char *srcp = SDL_static_cast(char *, src); \ | |
1357 | 412 int n = (len); \ |
413 if ( n >= 4 ) { \ | |
414 __asm__ __volatile__ ( \ | |
415 "std\n\t" \ | |
416 "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
|
417 "cld\n\t" \ |
1357 | 418 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \ |
419 : "0" (n >> 2), \ | |
420 "1" (dstp+(n-4)), "2" (srcp+(n-4)) \ | |
421 : "memory" ); \ | |
422 } \ | |
423 switch (n & 3) { \ | |
424 case 3: dstp[2] = srcp[2]; \ | |
425 case 2: dstp[1] = srcp[1]; \ | |
426 case 1: dstp[0] = srcp[0]; \ | |
427 break; \ | |
428 default: \ | |
429 break; \ | |
430 } \ | |
431 } while(0) | |
432 #endif | |
433 #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
|
434 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
|
435 size_t len); |
1357 | 436 #endif |
437 | |
1626 | 438 #ifdef HAVE_MEMMOVE |
1357 | 439 #define SDL_memmove memmove |
1626 | 440 #elif defined(HAVE_BCOPY) |
1357 | 441 #define SDL_memmove(d, s, n) bcopy((s), (d), (n)) |
442 #else | |
443 #define SDL_memmove(dst, src, len) \ | |
444 do { \ | |
445 if ( dst < src ) { \ | |
446 SDL_memcpy(dst, src, len); \ | |
447 } else { \ | |
448 SDL_revcpy(dst, src, len); \ | |
449 } \ | |
450 } while(0) | |
451 #endif | |
452 | |
1626 | 453 #ifdef HAVE_MEMCMP |
1357 | 454 #define SDL_memcmp memcmp |
455 #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
|
456 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
|
457 size_t len); |
1357 | 458 #endif |
459 | |
1626 | 460 #ifdef HAVE_STRLEN |
1357 | 461 #define SDL_strlen strlen |
462 #else | |
463 extern DECLSPEC size_t SDLCALL SDL_strlen(const char *string); | |
464 #endif | |
465 | |
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
|
466 #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
|
467 #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
|
468 #else |
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
469 #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
|
470 #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
|
471 #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
|
472 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
|
473 #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
|
474 |
1626 | 475 #ifdef HAVE_STRLCPY |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
476 #define SDL_strlcpy strlcpy |
1357 | 477 #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
|
478 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
|
479 size_t maxlen); |
1357 | 480 #endif |
481 | |
1626 | 482 #ifdef HAVE_STRLCAT |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
483 #define SDL_strlcat strlcat |
1357 | 484 #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
|
485 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
|
486 size_t maxlen); |
1357 | 487 #endif |
488 | |
1626 | 489 #ifdef HAVE_STRDUP |
1357 | 490 #define SDL_strdup strdup |
491 #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
|
492 extern DECLSPEC char *SDLCALL SDL_strdup(const char *string); |
1357 | 493 #endif |
494 | |
1626 | 495 #ifdef HAVE__STRREV |
1357 | 496 #define SDL_strrev _strrev |
497 #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
|
498 extern DECLSPEC char *SDLCALL SDL_strrev(char *string); |
1357 | 499 #endif |
500 | |
1626 | 501 #ifdef HAVE__STRUPR |
1357 | 502 #define SDL_strupr _strupr |
503 #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
|
504 extern DECLSPEC char *SDLCALL SDL_strupr(char *string); |
1357 | 505 #endif |
506 | |
1626 | 507 #ifdef HAVE__STRLWR |
1357 | 508 #define SDL_strlwr _strlwr |
509 #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
|
510 extern DECLSPEC char *SDLCALL SDL_strlwr(char *string); |
1357 | 511 #endif |
512 | |
1626 | 513 #ifdef HAVE_STRCHR |
1357 | 514 #define SDL_strchr strchr |
1626 | 515 #elif defined(HAVE_INDEX) |
1357 | 516 #define SDL_strchr index |
517 #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
|
518 extern DECLSPEC char *SDLCALL SDL_strchr(const char *string, int c); |
1357 | 519 #endif |
520 | |
1626 | 521 #ifdef HAVE_STRRCHR |
1357 | 522 #define SDL_strrchr strrchr |
1626 | 523 #elif defined(HAVE_RINDEX) |
1357 | 524 #define SDL_strrchr rindex |
525 #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
|
526 extern DECLSPEC char *SDLCALL SDL_strrchr(const char *string, int c); |
1357 | 527 #endif |
528 | |
1626 | 529 #ifdef HAVE_STRSTR |
1357 | 530 #define SDL_strstr strstr |
531 #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
|
532 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
|
533 const char *needle); |
1357 | 534 #endif |
535 | |
1626 | 536 #ifdef HAVE_ITOA |
1357 | 537 #define SDL_itoa itoa |
538 #else | |
539 #define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix) | |
540 #endif | |
541 | |
1626 | 542 #ifdef HAVE__LTOA |
1357 | 543 #define SDL_ltoa _ltoa |
544 #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
|
545 extern DECLSPEC char *SDLCALL SDL_ltoa(long value, char *string, int radix); |
1357 | 546 #endif |
547 | |
1626 | 548 #ifdef HAVE__UITOA |
1357 | 549 #define SDL_uitoa _uitoa |
550 #else | |
551 #define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix) | |
552 #endif | |
553 | |
1626 | 554 #ifdef HAVE__ULTOA |
1357 | 555 #define SDL_ultoa _ultoa |
556 #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
|
557 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
|
558 int radix); |
1357 | 559 #endif |
560 | |
1626 | 561 #ifdef HAVE_STRTOL |
1357 | 562 #define SDL_strtol strtol |
563 #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
|
564 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
|
565 int base); |
1357 | 566 #endif |
567 | |
1626 | 568 #ifdef HAVE_STRTOUL |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
569 #define SDL_strtoul strtoul |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
570 #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
|
571 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
|
572 char **endp, int base); |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
573 #endif |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
574 |
1626 | 575 #ifdef SDL_HAS_64BIT_TYPE |
1357 | 576 |
1626 | 577 #ifdef HAVE__I64TOA |
1357 | 578 #define SDL_lltoa _i64toa |
579 #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
|
580 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
|
581 int radix); |
1357 | 582 #endif |
583 | |
1626 | 584 #ifdef HAVE__UI64TOA |
1357 | 585 #define SDL_ulltoa _ui64toa |
586 #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
|
587 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
|
588 int radix); |
1357 | 589 #endif |
590 | |
1626 | 591 #ifdef HAVE_STRTOLL |
1357 | 592 #define SDL_strtoll strtoll |
593 #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
|
594 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
|
595 int base); |
1357 | 596 #endif |
597 | |
1626 | 598 #ifdef HAVE_STRTOULL |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
599 #define SDL_strtoull strtoull |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
600 #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
|
601 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
|
602 int base); |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
603 #endif |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
604 |
1357 | 605 #endif /* SDL_HAS_64BIT_TYPE */ |
606 | |
1626 | 607 #ifdef HAVE_STRTOD |
1357 | 608 #define SDL_strtod strtod |
609 #else | |
610 extern DECLSPEC double SDLCALL SDL_strtod(const char *string, char **endp); | |
611 #endif | |
612 | |
1626 | 613 #ifdef HAVE_ATOI |
1357 | 614 #define SDL_atoi atoi |
615 #else | |
616 #define SDL_atoi(X) SDL_strtol(X, NULL, 0) | |
617 #endif | |
618 | |
1626 | 619 #ifdef HAVE_ATOF |
1357 | 620 #define SDL_atof atof |
621 #else | |
622 #define SDL_atof(X) SDL_strtod(X, NULL) | |
623 #endif | |
624 | |
1626 | 625 #ifdef HAVE_STRCMP |
1357 | 626 #define SDL_strcmp strcmp |
627 #else | |
628 extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); | |
629 #endif | |
630 | |
1626 | 631 #ifdef HAVE_STRNCMP |
1357 | 632 #define SDL_strncmp strncmp |
633 #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
|
634 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
|
635 size_t maxlen); |
1357 | 636 #endif |
637 | |
1626 | 638 #ifdef HAVE_STRCASECMP |
1357 | 639 #define SDL_strcasecmp strcasecmp |
1626 | 640 #elif defined(HAVE__STRICMP) |
1510 | 641 #define SDL_strcasecmp _stricmp |
1357 | 642 #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
|
643 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
|
644 const char *str2); |
1357 | 645 #endif |
646 | |
1626 | 647 #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
|
648 #define SDL_strncasecmp strncasecmp |
1626 | 649 #elif defined(HAVE__STRNICMP) |
1512 | 650 #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
|
651 #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
|
652 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
|
653 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
|
654 #endif |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
655 |
1626 | 656 #ifdef HAVE_SSCANF |
1357 | 657 #define SDL_sscanf sscanf |
658 #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
|
659 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
|
660 ...); |
1357 | 661 #endif |
662 | |
1626 | 663 #ifdef HAVE_SNPRINTF |
1357 | 664 #define SDL_snprintf snprintf |
665 #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
|
666 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
|
667 const char *fmt, ...); |
1357 | 668 #endif |
669 | |
1626 | 670 #ifdef HAVE_VSNPRINTF |
1357 | 671 #define SDL_vsnprintf vsnprintf |
672 #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
|
673 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
|
674 const char *fmt, va_list ap); |
1357 | 675 #endif |
676 | |
3012
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
677 #ifndef HAVE_M_PI |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
678 #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
|
679 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
680 |
3032 | 681 #ifdef HAVE_CEIL |
682 #define SDL_ceil ceil | |
683 #else | |
684 #define SDL_ceil(x) ((double)(int)((x)+0.5)) | |
685 #endif | |
686 | |
3012
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
687 #ifdef HAVE_COPYSIGN |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
688 #define SDL_copysign copysign |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
689 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
690 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
|
691 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
692 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
693 #ifdef HAVE_COS |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
694 #define SDL_cos cos |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
695 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
696 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
|
697 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
698 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
699 #ifdef HAVE_COSF |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
700 #define SDL_cosf cosf |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
701 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
702 #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
|
703 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
704 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
705 #ifdef HAVE_FABS |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
706 #define SDL_fabs fabs |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
707 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
708 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
|
709 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
710 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
711 #ifdef HAVE_FLOOR |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
712 #define SDL_floor floor |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
713 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
714 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
|
715 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
716 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
717 #ifdef HAVE_LOG |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
718 #define SDL_log log |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
719 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
720 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
|
721 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
722 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
723 #ifdef HAVE_POW |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
724 #define SDL_pow pow |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
725 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
726 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
|
727 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
728 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
729 #ifdef HAVE_SCALBN |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
730 #define SDL_scalbn scalbn |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
731 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
732 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
|
733 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
734 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
735 #ifdef HAVE_SIN |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
736 #define SDL_sin sin |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
737 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
738 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
|
739 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
740 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
741 #ifdef HAVE_SINF |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
742 #define SDL_sinf sinf |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
743 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
744 #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
|
745 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
746 |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
747 #ifdef HAVE_SQRT |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
748 #define SDL_sqrt sqrt |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
749 #else |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
750 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
|
751 #endif |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
2859
diff
changeset
|
752 |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
753 /* 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
|
754 #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
|
755 #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
|
756 #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
|
757 #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
|
758 |
3295
4ff84e8939c1
Whoops, need both the header and the library!
Sam Lantinga <slouken@libsdl.org>
parents:
3294
diff
changeset
|
759 #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
|
760 #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
|
761 #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
|
762 #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
|
763 #else |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
764 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
|
765 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
|
766 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
|
767 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
|
768 #endif |
0313af081a84
Merge iconv const changes from 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2111
diff
changeset
|
769 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
|
770 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
|
771 size_t * outbytesleft); |
3407
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
772 /** |
d3baf5ac4e37
Partial fix for bug #859
Sam Lantinga <slouken@libsdl.org>
parents:
3365
diff
changeset
|
773 * 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
|
774 * 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
|
775 */ |
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
|
776 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
|
777 const char *fromcode, |
2135
0313af081a84
Merge iconv const changes from 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2111
diff
changeset
|
778 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
|
779 size_t inbytesleft); |
2143
e906da4414a3
Fix for bug #447 merged from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2142
diff
changeset
|
780 #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
|
781 #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
|
782 #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
|
783 |
1357 | 784 /* Ends C function definitions when using C++ */ |
785 #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
|
786 /* *INDENT-OFF* */ |
1357 | 787 } |
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
|
788 /* *INDENT-ON* */ |
1357 | 789 #endif |
790 #include "close_code.h" | |
791 | |
792 #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
|
793 |
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
|
794 /* vi: set ts=4 sw=4 expandtab: */ |