]>
git.r.bdr.sh - rbdr/super-polarity/blob - vendor/frameworks/SDL2.framework/Versions/A/Headers/begin_code.h
dd1f0616d012faf83c4006ac3911be7e0fe043e0
2 Simple DirectMedia Layer
3 Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
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.
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:
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.
25 * This file sets things up for C dynamic library function definitions,
26 * static inlined functions, and structures aligned at 4-byte alignment.
27 * If you don't like ugly C preprocessor code, don't look at this file. :)
30 /* This shouldn't be nested -- included it around code only. */
32 #error Nested inclusion of begin_code.h
36 /* Some compilers use a special export keyword */
38 # if defined(__BEOS__) || defined(__HAIKU__)
39 # if defined(__GNUC__)
40 # define DECLSPEC __declspec(dllexport)
42 # define DECLSPEC __declspec(export)
44 # elif defined(__WIN32__)
49 # define DECLSPEC __declspec(dllimport)
52 # define DECLSPEC __declspec(dllexport)
55 # if defined(__GNUC__) && __GNUC__ >= 4
56 # define DECLSPEC __attribute__ ((visibility("default")))
63 /* By default SDL uses the C calling convention */
65 #if defined(__WIN32__) && !defined(__GNUC__)
66 #define SDLCALL __cdecl
72 /* Removed DECLSPEC on Symbian OS because SDL cannot be a DLL in EPOC */
76 #endif /* __SYMBIAN32__ */
78 /* Force structure packing at 4 byte alignment.
79 This is necessary if the header is included in code which has structure
80 packing set to an alternate value, say for loading structures from disk.
81 The packing is reset to the previous value in close_code.h
83 #if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__)
85 #pragma warning(disable: 4103)
91 /* Use 8-byte alignment on 64-bit architectures, so pointers are aligned */
96 #endif /* Compiler needs structure packing set */
98 /* Set up compiler-specific options for inlining functions */
99 #ifndef SDL_INLINE_OKAY
101 #define SDL_INLINE_OKAY
103 /* Add any special compiler-specific cases here */
104 #if defined(_MSC_VER) || defined(__BORLANDC__) || \
105 defined(__DMC__) || defined(__SC__) || \
106 defined(__WATCOMC__) || defined(__LCC__) || \
109 #define __inline__ __inline
111 #define SDL_INLINE_OKAY
113 #if !defined(__MRC__) && !defined(_SGI_SOURCE)
115 #define __inline__ inline
117 #define SDL_INLINE_OKAY
118 #endif /* Not a funky compiler */
119 #endif /* Visual C++ */
121 #endif /* SDL_INLINE_OKAY */
123 /* If inlining isn't supported, remove "__inline__", turning static
124 inlined functions into static functions (resulting in code bloat
125 in all files which include the offending header files)
127 #ifndef SDL_INLINE_OKAY
131 #ifndef SDL_FORCE_INLINE
132 #if defined(_MSC_VER)
133 #define SDL_FORCE_INLINE __forceinline
134 #elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) )
135 #define SDL_FORCE_INLINE __attribute__((always_inline)) static inline
137 #define SDL_FORCE_INLINE static __inline__
141 /* Apparently this is needed by several Windows compilers */
142 #if !defined(__MACH__)
147 #define NULL ((void *)0)
150 #endif /* ! Mac OS X - breaks precompiled headers */