Path: blob/main/system/include/SDL/SDL_config_wiz.h
6173 views
/*1Simple DirectMedia Layer2Copyright (C) 1997-2011 Sam Lantinga <[email protected]>34This software is provided 'as-is', without any express or implied5warranty. In no event will the authors be held liable for any damages6arising from the use of this software.78Permission is granted to anyone to use this software for any purpose,9including commercial applications, and to alter it and redistribute it10freely, subject to the following restrictions:11121. The origin of this software must not be misrepresented; you must not13claim that you wrote the original software. If you use this software14in a product, an acknowledgment in the product documentation would be15appreciated but is not required.162. Altered source versions must be plainly marked as such, and must not be17misrepresented as being the original software.183. This notice may not be removed or altered from any source distribution.19*/2021#ifndef _SDL_config_h22#define _SDL_config_h2324/* This is a set of defines to configure the SDL features */2526/* General platform specific identifiers */27#include "SDL_platform.h"2829#define SDL_BYTEORDER 12343031#define HAVE_ALLOCA_H 132#define HAVE_SYS_TYPES_H 133#define HAVE_STDIO_H 134#define STDC_HEADERS 135#define HAVE_STDLIB_H 136#define HAVE_STDARG_H 137#define HAVE_MALLOC_H 138#define HAVE_MEMORY_H 139#define HAVE_STRING_H 140#define HAVE_STRINGS_H 141#define HAVE_INTTYPES_H 142#define HAVE_STDINT_H 143#define HAVE_CTYPE_H 144#define HAVE_MATH_H 145#define HAVE_ICONV_H 146#define HAVE_SIGNAL_H 147#define HAVE_MALLOC 148#define HAVE_CALLOC 149#define HAVE_REALLOC 150#define HAVE_FREE 151#define HAVE_ALLOCA 152#define HAVE_GETENV 153#define HAVE_SETENV 154#define HAVE_PUTENV 155#define HAVE_UNSETENV 156#define HAVE_QSORT 157#define HAVE_ABS 158#define HAVE_BCOPY 159#define HAVE_MEMSET 160#define HAVE_MEMCPY 161#define HAVE_MEMMOVE 162#define HAVE_STRLEN 163#define HAVE_STRDUP 164#define HAVE_STRCHR 165#define HAVE_STRRCHR 166#define HAVE_STRSTR 167#define HAVE_STRTOL 168#define HAVE_STRTOUL 169#define HAVE_STRTOLL 170#define HAVE_STRTOULL 171#define HAVE_ATOI 172#define HAVE_ATOF 173#define HAVE_STRCMP 174#define HAVE_STRNCMP 175#define HAVE_STRCASECMP 176#define HAVE_STRNCASECMP 177#define HAVE_SSCANF 178#define HAVE_SNPRINTF 179#define HAVE_VSNPRINTF 180#define HAVE_M_PI 181#define HAVE_CEIL 182#define HAVE_COPYSIGN 183#define HAVE_COS 184#define HAVE_COSF 185#define HAVE_FABS 186#define HAVE_FLOOR 187#define HAVE_LOG 188#define HAVE_SCALBN 189#define HAVE_SIN 190#define HAVE_SINF 191#define HAVE_SQRT 192#define HAVE_SIGACTION 193#define HAVE_SETJMP 194#define HAVE_NANOSLEEP 195#define HAVE_POW 19697#define SDL_CDROM_DISABLED 198#define SDL_AUDIO_DRIVER_DUMMY 199#define SDL_AUDIO_DRIVER_OSS 1100101#define SDL_INPUT_LINUXEV 1102#define SDL_INPUT_TSLIB 1103#define SDL_JOYSTICK_LINUX 1104#define SDL_HAPTIC_LINUX 1105106#define SDL_LOADSO_DLOPEN 1107108#define SDL_THREAD_PTHREAD 1109#define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP 1110111#define SDL_TIMER_UNIX 1112113#define SDL_VIDEO_DRIVER_DUMMY 1114#define SDL_VIDEO_DRIVER_PANDORA 1115#define SDL_VIDEO_RENDER_OGL_ES 1116#define SDL_VIDEO_OPENGL_ES 1117118#endif /* _SDL_config_h */119120121