gosu 1.1.1.1 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (219) hide show
  1. checksums.yaml +4 -4
  2. data/dependencies/SDL/include/SDL.h +108 -14
  3. data/dependencies/SDL/include/SDL_assert.h +81 -50
  4. data/dependencies/SDL/include/SDL_atomic.h +135 -35
  5. data/dependencies/SDL/include/SDL_audio.h +960 -355
  6. data/dependencies/SDL/include/SDL_bits.h +11 -6
  7. data/dependencies/SDL/include/SDL_blendmode.h +91 -14
  8. data/dependencies/SDL/include/SDL_clipboard.h +30 -7
  9. data/dependencies/SDL/include/SDL_config.h +277 -27
  10. data/dependencies/SDL/include/SDL_config_android.h +13 -38
  11. data/dependencies/SDL/include/SDL_config_iphoneos.h +21 -62
  12. data/dependencies/SDL/include/SDL_config_macosx.h +23 -92
  13. data/dependencies/SDL/include/SDL_config_minimal.h +1 -4
  14. data/dependencies/SDL/include/SDL_config_pandora.h +15 -22
  15. data/dependencies/SDL/include/SDL_config_psp.h +16 -37
  16. data/dependencies/SDL/include/SDL_config_windows.h +28 -91
  17. data/dependencies/SDL/include/SDL_config_winrt.h +33 -61
  18. data/dependencies/SDL/include/SDL_config_wiz.h +28 -56
  19. data/dependencies/SDL/include/SDL_copying.h +1 -1
  20. data/dependencies/SDL/include/SDL_cpuinfo.h +331 -71
  21. data/dependencies/SDL/include/SDL_egl.h +906 -280
  22. data/dependencies/SDL/include/SDL_endian.h +101 -47
  23. data/dependencies/SDL/include/SDL_error.h +70 -19
  24. data/dependencies/SDL/include/SDL_events.h +387 -79
  25. data/dependencies/SDL/include/SDL_filesystem.h +73 -64
  26. data/dependencies/SDL/include/SDL_gamecontroller.h +585 -125
  27. data/dependencies/SDL/include/SDL_gesture.h +36 -6
  28. data/dependencies/SDL/include/SDL_haptic.h +304 -210
  29. data/dependencies/SDL/include/SDL_hidapi.h +451 -0
  30. data/dependencies/SDL/include/SDL_hints.h +1286 -897
  31. data/dependencies/SDL/include/SDL_joystick.h +577 -130
  32. data/dependencies/SDL/include/SDL_keyboard.h +162 -63
  33. data/dependencies/SDL/include/SDL_keycode.h +7 -5
  34. data/dependencies/SDL/include/SDL_loadso.h +42 -8
  35. data/dependencies/SDL/include/SDL_locale.h +34 -32
  36. data/dependencies/SDL/include/SDL_log.h +212 -19
  37. data/dependencies/SDL/include/SDL_main.h +72 -17
  38. data/dependencies/SDL/include/SDL_messagebox.h +70 -23
  39. data/dependencies/SDL/include/SDL_metal.h +27 -32
  40. data/dependencies/SDL/include/SDL_misc.h +19 -15
  41. data/dependencies/SDL/include/SDL_mouse.h +262 -110
  42. data/dependencies/SDL/include/SDL_mutex.h +286 -66
  43. data/dependencies/SDL/include/SDL_name.h +1 -1
  44. data/dependencies/SDL/include/SDL_opengl.h +1 -1
  45. data/dependencies/SDL/include/SDL_opengles.h +1 -1
  46. data/dependencies/SDL/include/SDL_opengles2.h +2 -2
  47. data/dependencies/SDL/include/SDL_pixels.h +199 -34
  48. data/dependencies/SDL/include/SDL_platform.h +39 -2
  49. data/dependencies/SDL/include/SDL_power.h +23 -10
  50. data/dependencies/SDL/include/SDL_quit.h +1 -1
  51. data/dependencies/SDL/include/SDL_rect.h +78 -28
  52. data/dependencies/SDL/include/SDL_render.h +1204 -472
  53. data/dependencies/SDL/include/SDL_revision.h +2 -2
  54. data/dependencies/SDL/include/SDL_rwops.h +605 -33
  55. data/dependencies/SDL/include/SDL_scancode.h +1 -1
  56. data/dependencies/SDL/include/SDL_sensor.h +76 -42
  57. data/dependencies/SDL/include/SDL_shape.h +38 -27
  58. data/dependencies/SDL/include/SDL_stdinc.h +96 -24
  59. data/dependencies/SDL/include/SDL_surface.h +571 -139
  60. data/dependencies/SDL/include/SDL_system.h +339 -101
  61. data/dependencies/SDL/include/SDL_syswm.h +50 -20
  62. data/dependencies/SDL/include/SDL_test.h +1 -1
  63. data/dependencies/SDL/include/SDL_test_assert.h +2 -2
  64. data/dependencies/SDL/include/SDL_test_common.h +23 -6
  65. data/dependencies/SDL/include/SDL_test_compare.h +1 -1
  66. data/dependencies/SDL/include/SDL_test_crc32.h +1 -1
  67. data/dependencies/SDL/include/SDL_test_font.h +3 -3
  68. data/dependencies/SDL/include/SDL_test_fuzzer.h +28 -26
  69. data/dependencies/SDL/include/SDL_test_harness.h +6 -6
  70. data/dependencies/SDL/include/SDL_test_images.h +1 -1
  71. data/dependencies/SDL/include/SDL_test_log.h +1 -1
  72. data/dependencies/SDL/include/SDL_test_md5.h +1 -1
  73. data/dependencies/SDL/include/SDL_test_memory.h +1 -1
  74. data/dependencies/SDL/include/SDL_test_random.h +2 -2
  75. data/dependencies/SDL/include/SDL_thread.h +226 -128
  76. data/dependencies/SDL/include/SDL_timer.h +129 -22
  77. data/dependencies/SDL/include/SDL_touch.h +48 -8
  78. data/dependencies/SDL/include/SDL_types.h +1 -1
  79. data/dependencies/SDL/include/SDL_version.h +72 -46
  80. data/dependencies/SDL/include/SDL_video.h +1266 -460
  81. data/dependencies/SDL/include/SDL_vulkan.h +100 -161
  82. data/dependencies/SDL/include/begin_code.h +22 -1
  83. data/dependencies/SDL/include/close_code.h +1 -1
  84. data/dependencies/SDL/lib/x64/libSDL2.dll.a +0 -0
  85. data/dependencies/SDL/lib/x86/libSDL2.dll.a +0 -0
  86. data/dependencies/SDL_sound/SDL_sound.c +83 -7
  87. data/dependencies/SDL_sound/SDL_sound.h +4 -4
  88. data/dependencies/SDL_sound/SDL_sound_aiff.c +9 -12
  89. data/dependencies/SDL_sound/SDL_sound_au.c +7 -7
  90. data/dependencies/SDL_sound/SDL_sound_coreaudio.c +3 -3
  91. data/dependencies/SDL_sound/SDL_sound_flac.c +1 -1
  92. data/dependencies/SDL_sound/SDL_sound_internal.h +17 -10
  93. data/dependencies/SDL_sound/SDL_sound_modplug.c +25 -27
  94. data/dependencies/SDL_sound/SDL_sound_mp3.c +5 -17
  95. data/dependencies/SDL_sound/SDL_sound_raw.c +11 -11
  96. data/dependencies/SDL_sound/SDL_sound_shn.c +8 -7
  97. data/dependencies/SDL_sound/SDL_sound_voc.c +6 -4
  98. data/dependencies/SDL_sound/SDL_sound_vorbis.c +6 -11
  99. data/dependencies/SDL_sound/SDL_sound_wav.c +35 -29
  100. data/dependencies/SDL_sound/dr_flac.h +618 -220
  101. data/dependencies/SDL_sound/dr_mp3.h +263 -94
  102. data/dependencies/SDL_sound/libmodplug/fastmix.c +58 -64
  103. data/dependencies/SDL_sound/libmodplug/libmodplug.h +25 -103
  104. data/dependencies/SDL_sound/libmodplug/load_669.c +14 -17
  105. data/dependencies/SDL_sound/libmodplug/load_amf.c +11 -7
  106. data/dependencies/SDL_sound/libmodplug/load_ams.c +65 -22
  107. data/dependencies/SDL_sound/libmodplug/load_dbm.c +8 -4
  108. data/dependencies/SDL_sound/libmodplug/load_dmf.c +55 -25
  109. data/dependencies/SDL_sound/libmodplug/load_far.c +9 -13
  110. data/dependencies/SDL_sound/libmodplug/load_gdm.c +448 -0
  111. data/dependencies/SDL_sound/libmodplug/load_it.c +45 -49
  112. data/dependencies/SDL_sound/libmodplug/load_mdl.c +80 -53
  113. data/dependencies/SDL_sound/libmodplug/load_med.c +20 -12
  114. data/dependencies/SDL_sound/libmodplug/load_mod.c +40 -15
  115. data/dependencies/SDL_sound/libmodplug/load_mt2.c +29 -17
  116. data/dependencies/SDL_sound/libmodplug/load_okt.c +12 -8
  117. data/dependencies/SDL_sound/libmodplug/load_psm.c +101 -78
  118. data/dependencies/SDL_sound/libmodplug/load_ptm.c +18 -17
  119. data/dependencies/SDL_sound/libmodplug/load_s3m.c +9 -7
  120. data/dependencies/SDL_sound/libmodplug/load_stm.c +3 -2
  121. data/dependencies/SDL_sound/libmodplug/load_ult.c +2 -2
  122. data/dependencies/SDL_sound/libmodplug/load_umx.c +315 -35
  123. data/dependencies/SDL_sound/libmodplug/load_xm.c +25 -21
  124. data/dependencies/SDL_sound/libmodplug/mmcmp.c +295 -149
  125. data/dependencies/SDL_sound/libmodplug/modplug.c +7 -123
  126. data/dependencies/SDL_sound/libmodplug/modplug.h +32 -29
  127. data/dependencies/SDL_sound/libmodplug/snd_dsp.c +0 -1
  128. data/dependencies/SDL_sound/libmodplug/snd_flt.c +2 -2
  129. data/dependencies/SDL_sound/libmodplug/snd_fx.c +24 -18
  130. data/dependencies/SDL_sound/libmodplug/sndfile.c +55 -156
  131. data/dependencies/SDL_sound/libmodplug/sndmix.c +7 -12
  132. data/dependencies/SDL_sound/libmodplug/tables.h +10 -15
  133. data/dependencies/SDL_sound/stb_vorbis.h +508 -325
  134. data/dependencies/{al_soft → mojoAL}/AL/al.h +38 -30
  135. data/dependencies/{al_soft → mojoAL}/AL/alc.h +27 -56
  136. data/dependencies/mojoAL/mojoal.c +4594 -0
  137. data/ext/gosu/extconf.rb +29 -30
  138. data/include/Gosu/Audio.hpp +70 -85
  139. data/include/Gosu/Color.hpp +63 -107
  140. data/include/Gosu/Font.hpp +44 -48
  141. data/include/Gosu/Fwd.hpp +1 -1
  142. data/include/Gosu/Graphics.hpp +64 -75
  143. data/include/Gosu/GraphicsBase.hpp +32 -39
  144. data/include/Gosu/Image.hpp +56 -62
  145. data/include/Gosu/ImageData.hpp +23 -27
  146. data/include/Gosu/Inspection.hpp +1 -4
  147. data/include/Gosu/Math.hpp +4 -16
  148. data/include/Gosu/Platform.hpp +1 -51
  149. data/include/Gosu/Text.hpp +37 -40
  150. data/include/Gosu/TextInput.hpp +34 -40
  151. data/include/Gosu/Utility.hpp +10 -8
  152. data/include/Gosu/Version.hpp +1 -1
  153. data/include/Gosu/Window.hpp +73 -70
  154. data/lib/SDL2.dll +0 -0
  155. data/lib/gosu/compat.rb +28 -37
  156. data/lib/gosu/swig_patches.rb +31 -3
  157. data/lib/gosu.rb +2 -2
  158. data/lib64/SDL2.dll +0 -0
  159. data/rdoc/gosu.rb +9 -1
  160. data/src/Audio.cpp +88 -86
  161. data/src/AudioFile.hpp +6 -6
  162. data/src/AudioFileAudioToolbox.cpp +1 -1
  163. data/src/AudioFileSDLSound.cpp +1 -1
  164. data/src/AudioImpl.hpp +5 -5
  165. data/src/Bitmap.cpp +13 -13
  166. data/src/BitmapIO.cpp +0 -20
  167. data/src/BlockAllocator.cpp +2 -1
  168. data/src/Channel.cpp +22 -20
  169. data/src/Color.cpp +62 -55
  170. data/src/EmptyImageData.hpp +16 -18
  171. data/src/FileUnix.cpp +1 -1
  172. data/src/FileWin.cpp +1 -1
  173. data/src/Font.cpp +52 -57
  174. data/src/GosuViewController.cpp +2 -0
  175. data/src/Graphics.cpp +135 -143
  176. data/src/Image.cpp +42 -42
  177. data/src/Input.cpp +1 -1
  178. data/src/InputUIKit.cpp +1 -1
  179. data/src/LargeImageData.cpp +120 -113
  180. data/src/LargeImageData.hpp +18 -16
  181. data/src/Log.hpp +6 -6
  182. data/src/Macro.cpp +35 -37
  183. data/src/Macro.hpp +11 -11
  184. data/src/Math.cpp +8 -1
  185. data/src/RenderState.hpp +5 -5
  186. data/src/Resolution.cpp +12 -7
  187. data/src/RubyGosu.cxx +471 -502
  188. data/src/RubyGosu.h +3 -2
  189. data/src/TexChunk.cpp +50 -41
  190. data/src/TexChunk.hpp +22 -22
  191. data/src/Text.cpp +58 -59
  192. data/src/TextBuilder.cpp +60 -57
  193. data/src/TextBuilder.hpp +20 -20
  194. data/src/TextInput.cpp +127 -135
  195. data/src/TrueTypeFont.cpp +108 -108
  196. data/src/TrueTypeFont.hpp +39 -38
  197. data/src/TrueTypeFontApple.cpp +27 -23
  198. data/src/TrueTypeFontUnix.cpp +21 -26
  199. data/src/TrueTypeFontWin.cpp +30 -30
  200. data/src/Utility.cpp +82 -23
  201. data/src/WinUtility.hpp +2 -1
  202. data/src/Window.cpp +103 -86
  203. data/src/WindowUIKit.cpp +48 -51
  204. metadata +8 -20
  205. data/dependencies/SDL/include/SDL_config_os2.h +0 -188
  206. data/dependencies/SDL_sound/libmodplug/load_abc.c +0 -4725
  207. data/dependencies/SDL_sound/libmodplug/load_mid.c +0 -1405
  208. data/dependencies/SDL_sound/libmodplug/load_pat.c +0 -1143
  209. data/dependencies/SDL_sound/libmodplug/load_pat.h +0 -25
  210. data/dependencies/al_soft/AL/alext.h +0 -585
  211. data/dependencies/al_soft/AL/efx-creative.h +0 -3
  212. data/dependencies/al_soft/AL/efx-presets.h +0 -402
  213. data/dependencies/al_soft/AL/efx.h +0 -762
  214. data/dependencies/al_soft/x64/libOpenAL32.dll.a +0 -0
  215. data/dependencies/al_soft/x86/libOpenAL32.dll.a +0 -0
  216. data/lib/OpenAL32.dll +0 -0
  217. data/lib64/OpenAL32.dll +0 -0
  218. data/src/UtilityApple.cpp +0 -16
  219. data/src/UtilityWin.cpp +0 -17
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gosu
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1.1
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julian Raschke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-13 00:00:00.000000000 Z
11
+ date: 2022-01-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
14
  2D game development library.
@@ -40,7 +40,6 @@ files:
40
40
  - dependencies/SDL/include/SDL_config_iphoneos.h
41
41
  - dependencies/SDL/include/SDL_config_macosx.h
42
42
  - dependencies/SDL/include/SDL_config_minimal.h
43
- - dependencies/SDL/include/SDL_config_os2.h
44
43
  - dependencies/SDL/include/SDL_config_pandora.h
45
44
  - dependencies/SDL/include/SDL_config_psp.h
46
45
  - dependencies/SDL/include/SDL_config_windows.h
@@ -56,6 +55,7 @@ files:
56
55
  - dependencies/SDL/include/SDL_gamecontroller.h
57
56
  - dependencies/SDL/include/SDL_gesture.h
58
57
  - dependencies/SDL/include/SDL_haptic.h
58
+ - dependencies/SDL/include/SDL_hidapi.h
59
59
  - dependencies/SDL/include/SDL_hints.h
60
60
  - dependencies/SDL/include/SDL_joystick.h
61
61
  - dependencies/SDL/include/SDL_keyboard.h
@@ -136,23 +136,20 @@ files:
136
136
  - dependencies/SDL_sound/libmodplug/fastmix.c
137
137
  - dependencies/SDL_sound/libmodplug/libmodplug.h
138
138
  - dependencies/SDL_sound/libmodplug/load_669.c
139
- - dependencies/SDL_sound/libmodplug/load_abc.c
140
139
  - dependencies/SDL_sound/libmodplug/load_amf.c
141
140
  - dependencies/SDL_sound/libmodplug/load_ams.c
142
141
  - dependencies/SDL_sound/libmodplug/load_dbm.c
143
142
  - dependencies/SDL_sound/libmodplug/load_dmf.c
144
143
  - dependencies/SDL_sound/libmodplug/load_dsm.c
145
144
  - dependencies/SDL_sound/libmodplug/load_far.c
145
+ - dependencies/SDL_sound/libmodplug/load_gdm.c
146
146
  - dependencies/SDL_sound/libmodplug/load_it.c
147
147
  - dependencies/SDL_sound/libmodplug/load_mdl.c
148
148
  - dependencies/SDL_sound/libmodplug/load_med.c
149
- - dependencies/SDL_sound/libmodplug/load_mid.c
150
149
  - dependencies/SDL_sound/libmodplug/load_mod.c
151
150
  - dependencies/SDL_sound/libmodplug/load_mt2.c
152
151
  - dependencies/SDL_sound/libmodplug/load_mtm.c
153
152
  - dependencies/SDL_sound/libmodplug/load_okt.c
154
- - dependencies/SDL_sound/libmodplug/load_pat.c
155
- - dependencies/SDL_sound/libmodplug/load_pat.h
156
153
  - dependencies/SDL_sound/libmodplug/load_psm.c
157
154
  - dependencies/SDL_sound/libmodplug/load_ptm.c
158
155
  - dependencies/SDL_sound/libmodplug/load_s3m.c
@@ -170,14 +167,9 @@ files:
170
167
  - dependencies/SDL_sound/libmodplug/sndmix.c
171
168
  - dependencies/SDL_sound/libmodplug/tables.h
172
169
  - dependencies/SDL_sound/stb_vorbis.h
173
- - dependencies/al_soft/AL/al.h
174
- - dependencies/al_soft/AL/alc.h
175
- - dependencies/al_soft/AL/alext.h
176
- - dependencies/al_soft/AL/efx-creative.h
177
- - dependencies/al_soft/AL/efx-presets.h
178
- - dependencies/al_soft/AL/efx.h
179
- - dependencies/al_soft/x64/libOpenAL32.dll.a
180
- - dependencies/al_soft/x86/libOpenAL32.dll.a
170
+ - dependencies/mojoAL/AL/al.h
171
+ - dependencies/mojoAL/AL/alc.h
172
+ - dependencies/mojoAL/mojoal.c
181
173
  - dependencies/stb/stb_image.h
182
174
  - dependencies/stb/stb_image_write.h
183
175
  - dependencies/stb/stb_truetype.h
@@ -208,7 +200,6 @@ files:
208
200
  - include/Gosu/Utility.hpp
209
201
  - include/Gosu/Version.hpp
210
202
  - include/Gosu/Window.hpp
211
- - lib/OpenAL32.dll
212
203
  - lib/SDL2.dll
213
204
  - lib/gosu.rb
214
205
  - lib/gosu/compat.rb
@@ -216,7 +207,6 @@ files:
216
207
  - lib/gosu/preview.rb
217
208
  - lib/gosu/run.rb
218
209
  - lib/gosu/swig_patches.rb
219
- - lib64/OpenAL32.dll
220
210
  - lib64/SDL2.dll
221
211
  - rdoc/gosu.rb
222
212
  - src/Audio.cpp
@@ -286,8 +276,6 @@ files:
286
276
  - src/TrueTypeFontUnix.cpp
287
277
  - src/TrueTypeFontWin.cpp
288
278
  - src/Utility.cpp
289
- - src/UtilityApple.cpp
290
- - src/UtilityWin.cpp
291
279
  - src/Version.cpp
292
280
  - src/WinUtility.cpp
293
281
  - src/WinUtility.hpp
@@ -316,7 +304,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
316
304
  - !ruby/object:Gem::Version
317
305
  version: '0'
318
306
  requirements: []
319
- rubygems_version: 3.1.4
307
+ rubygems_version: 3.2.22
320
308
  signing_key:
321
309
  specification_version: 4
322
310
  summary: 2D game development library.
@@ -1,188 +0,0 @@
1
- /*
2
- Simple DirectMedia Layer
3
- Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
4
-
5
- This software is provided 'as-is', without any express or implied
6
- warranty. In no event will the authors be held liable for any damages
7
- arising from the use of this software.
8
-
9
- Permission is granted to anyone to use this software for any purpose,
10
- including commercial applications, and to alter it and redistribute it
11
- freely, subject to the following restrictions:
12
-
13
- 1. The origin of this software must not be misrepresented; you must not
14
- claim that you wrote the original software. If you use this software
15
- in a product, an acknowledgment in the product documentation would be
16
- appreciated but is not required.
17
- 2. Altered source versions must be plainly marked as such, and must not be
18
- misrepresented as being the original software.
19
- 3. This notice may not be removed or altered from any source distribution.
20
- */
21
-
22
- #ifndef SDL_config_os2_h_
23
- #define SDL_config_os2_h_
24
- #define SDL_config_h_
25
-
26
- #include "SDL_platform.h"
27
-
28
- #define SDL_AUDIO_DRIVER_DUMMY 1
29
- #define SDL_AUDIO_DRIVER_DISK 1
30
- #define SDL_AUDIO_DRIVER_OS2 1
31
-
32
- #define SDL_POWER_DISABLED 1
33
- #define SDL_JOYSTICK_DISABLED 1
34
- #define SDL_HAPTIC_DISABLED 1
35
- /*#undef SDL_JOYSTICK_HIDAPI */
36
- /*#undef SDL_JOYSTICK_VIRTUAL */
37
-
38
- #define SDL_SENSOR_DUMMY 1
39
- #define SDL_VIDEO_DRIVER_DUMMY 1
40
- #define SDL_VIDEO_DRIVER_OS2 1
41
-
42
- /* Enable OpenGL support */
43
- /* #undef SDL_VIDEO_OPENGL */
44
-
45
- /* Enable Vulkan support */
46
- /* #undef SDL_VIDEO_VULKAN */
47
-
48
- #define SDL_THREAD_OS2 1
49
- #define SDL_LOADSO_OS2 1
50
- #define SDL_TIMER_OS2 1
51
- #define SDL_FILESYSTEM_OS2 1
52
-
53
- /* Enable assembly routines */
54
- #define SDL_ASSEMBLY_ROUTINES 1
55
-
56
- /* use libsamplerate for audio rate conversion. */
57
- /*#define HAVE_LIBSAMPLERATE_H 1 */
58
-
59
- /* Enable dynamic libsamplerate support */
60
- #define SDL_LIBSAMPLERATE_DYNAMIC "SAMPRATE.DLL"
61
-
62
- #define HAVE_LIBC 1
63
-
64
- #define HAVE_SYS_TYPES_H 1
65
- #define HAVE_STDIO_H 1
66
- #define STDC_HEADERS 1
67
- #define HAVE_STDLIB_H 1
68
- #define HAVE_STDARG_H 1
69
- #define HAVE_STDDEF_H 1
70
- #define HAVE_MALLOC_H 1
71
- #define HAVE_MEMORY_H 1
72
- #define HAVE_STRING_H 1
73
- #define HAVE_STRINGS_H 1
74
- #define HAVE_WCHAR_H 1
75
- #define HAVE_INTTYPES_H 1
76
- #define HAVE_STDINT_H 1
77
- #define HAVE_LIMITS_H 1
78
- #define HAVE_CTYPE_H 1
79
- #define HAVE_MATH_H 1
80
- #define HAVE_FLOAT_H 1
81
- #define HAVE_SIGNAL_H 1
82
-
83
- #define HAVE_MALLOC 1
84
- #define HAVE_CALLOC 1
85
- #define HAVE_REALLOC 1
86
- #define HAVE_FREE 1
87
- #if defined(__WATCOMC__)
88
- #define HAVE__FSEEKI64 1
89
- #define HAVE__FTELLI64 1
90
- #endif
91
- #define HAVE_ALLOCA 1
92
- #define HAVE_GETENV 1
93
- #define HAVE_SETENV 1
94
- #define HAVE_PUTENV 1
95
- #define HAVE_QSORT 1
96
- #define HAVE_ABS 1
97
- #define HAVE_BCOPY 1
98
- #define HAVE_MEMSET 1
99
- #define HAVE_MEMCPY 1
100
- #define HAVE_MEMMOVE 1
101
- #define HAVE_MEMCMP 1
102
- #define HAVE_WCSLEN 1
103
- #define HAVE_WCSLCPY 1
104
- #define HAVE_WCSLCAT 1
105
- #define HAVE_WCSCMP 1
106
- #define HAVE__WCSICMP 1
107
- #define HAVE__WCSNICMP 1
108
- #define HAVE_STRLEN 1
109
- #define HAVE_STRLCPY 1
110
- #define HAVE_STRLCAT 1
111
- #define HAVE__STRREV 1
112
- #define HAVE__STRUPR 1
113
- #define HAVE__STRLWR 1
114
- #define HAVE_INDEX 1
115
- #define HAVE_RINDEX 1
116
- #define HAVE_STRCHR 1
117
- #define HAVE_STRRCHR 1
118
- #define HAVE_STRSTR 1
119
- /* #undef HAVE_STRTOK_R */
120
- #define HAVE_ITOA 1
121
- #define HAVE__LTOA 1
122
- #define HAVE__ULTOA 1
123
- #define HAVE_STRTOL 1
124
- #define HAVE_STRTOUL 1
125
- #define HAVE__I64TOA 1
126
- #define HAVE__UI64TOA 1
127
- #define HAVE_STRTOLL 1
128
- #define HAVE_STRTOULL 1
129
- #define HAVE_STRTOD 1
130
- #define HAVE_ATOI 1
131
- #define HAVE_ATOF 1
132
- #define HAVE_WCSLEN 1
133
- #define HAVE_WCSLCPY 1
134
- #define HAVE_WCSLCAT 1
135
- /* #define HAVE_WCSDUP 1 */
136
- /* #define wcsdup _wcsdup */
137
- #define HAVE_WCSSTR 1
138
- #define HAVE_WCSCMP 1
139
- #define HAVE_WCSNCMP 1
140
- #define HAVE_STRCMP 1
141
- #define HAVE_STRNCMP 1
142
- #define HAVE_STRICMP 1
143
- #define HAVE_STRCASECMP 1
144
- #define HAVE_STRNCASECMP 1
145
- #define HAVE_SSCANF 1
146
- #define HAVE_VSSCANF 1
147
- #define HAVE_SNPRINTF 1
148
- #define HAVE_VSNPRINTF 1
149
- #define HAVE_SETJMP 1
150
- #define HAVE_ACOS 1
151
- /* #undef HAVE_ACOSF */
152
- #define HAVE_ASIN 1
153
- /* #undef HAVE_ASINF */
154
- #define HAVE_ATAN 1
155
- #define HAVE_ATAN2 1
156
- /* #undef HAVE_ATAN2F */
157
- #define HAVE_CEIL 1
158
- /* #undef HAVE_CEILF */
159
- /* #undef HAVE_COPYSIGN */
160
- /* #undef HAVE_COPYSIGNF */
161
- #define HAVE_COS 1
162
- /* #undef HAVE_COSF */
163
- #define HAVE_EXP 1
164
- /* #undef HAVE_EXPF */
165
- #define HAVE_FABS 1
166
- /* #undef HAVE_FABSF */
167
- #define HAVE_FLOOR 1
168
- /* #undef HAVE_FLOORF */
169
- #define HAVE_FMOD 1
170
- /* #undef HAVE_FMODF */
171
- #define HAVE_LOG 1
172
- /* #undef HAVE_LOGF */
173
- #define HAVE_LOG10 1
174
- /* #undef HAVE_LOG10F */
175
- #define HAVE_POW 1
176
- /* #undef HAVE_POWF */
177
- #define HAVE_SIN 1
178
- /* #undef HAVE_SINF */
179
- /* #undef HAVE_SCALBN */
180
- /* #undef HAVE_SCALBNF */
181
- #define HAVE_SQRT 1
182
- /* #undef HAVE_SQRTF */
183
- #define HAVE_TAN 1
184
- /* #undef HAVE_TANF */
185
- /* #undef HAVE_TRUNC */
186
- /* #undef HAVE_TRUNCF */
187
-
188
- #endif /* SDL_config_os2_h_ */