ddnet/other/sdl/include/begin_code.h

141 lines
4 KiB
C
Raw Normal View History

2008-10-21 16:19:02 +00:00
/*
2015-08-24 22:08:15 +00:00
Simple DirectMedia Layer
Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
2008-10-21 16:19:02 +00:00
2015-08-24 22:08:15 +00:00
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
2008-10-21 16:19:02 +00:00
2015-08-24 22:08:15 +00:00
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
2008-10-21 16:19:02 +00:00
2015-08-24 22:08:15 +00:00
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
2008-10-21 16:19:02 +00:00
*/
2015-08-24 22:08:15 +00:00
/**
* \file begin_code.h
*
2010-05-29 07:25:38 +00:00
* This file sets things up for C dynamic library function definitions,
* static inlined functions, and structures aligned at 4-byte alignment.
* If you don't like ugly C preprocessor code, don't look at this file. :)
*/
2008-10-21 16:19:02 +00:00
2015-08-24 22:08:15 +00:00
/* This shouldn't be nested -- included it around code only. */
2008-10-21 16:19:02 +00:00
#ifdef _begin_code_h
#error Nested inclusion of begin_code.h
#endif
#define _begin_code_h
2015-08-24 22:08:15 +00:00
#ifndef SDL_DEPRECATED
# if (__GNUC__ >= 4) /* technically, this arrived in gcc 3.1, but oh well. */
# define SDL_DEPRECATED __attribute__((deprecated))
2008-10-21 16:19:02 +00:00
# else
2015-08-24 22:08:15 +00:00
# define SDL_DEPRECATED
2008-10-21 16:19:02 +00:00
# endif
2015-08-24 22:08:15 +00:00
#endif
/* Some compilers use a special export keyword */
#ifndef DECLSPEC
# if defined(__WIN32__) || defined(__WINRT__)
2008-10-21 16:19:02 +00:00
# ifdef __BORLANDC__
# ifdef BUILD_SDL
# define DECLSPEC
2010-05-29 07:25:38 +00:00
# else
2015-08-24 22:08:15 +00:00
# define DECLSPEC __declspec(dllimport)
2010-05-29 07:25:38 +00:00
# endif
2008-10-21 16:19:02 +00:00
# else
2015-08-24 22:08:15 +00:00
# define DECLSPEC __declspec(dllexport)
2008-10-21 16:19:02 +00:00
# endif
# else
# if defined(__GNUC__) && __GNUC__ >= 4
2015-08-24 22:08:15 +00:00
# define DECLSPEC __attribute__ ((visibility("default")))
# elif defined(__GNUC__) && __GNUC__ >= 2
# define DECLSPEC __declspec(dllexport)
2008-10-21 16:19:02 +00:00
# else
# define DECLSPEC
# endif
# endif
#endif
2015-08-24 22:08:15 +00:00
/* By default SDL uses the C calling convention */
2008-10-21 16:19:02 +00:00
#ifndef SDLCALL
2015-08-24 22:08:15 +00:00
#if (defined(__WIN32__) || defined(__WINRT__)) && !defined(__GNUC__)
#define SDLCALL __cdecl
#else
#define SDLCALL
#endif
2008-10-21 16:19:02 +00:00
#endif /* SDLCALL */
2015-08-24 22:08:15 +00:00
/* Removed DECLSPEC on Symbian OS because SDL cannot be a DLL in EPOC */
#ifdef __SYMBIAN32__
2008-10-21 16:19:02 +00:00
#undef DECLSPEC
#define DECLSPEC
#endif /* __SYMBIAN32__ */
2015-08-24 22:08:15 +00:00
/* Force structure packing at 4 byte alignment.
This is necessary if the header is included in code which has structure
packing set to an alternate value, say for loading structures from disk.
The packing is reset to the previous value in close_code.h
2008-10-21 16:19:02 +00:00
*/
#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__)
#ifdef _MSC_VER
#pragma warning(disable: 4103)
#endif
#ifdef __BORLANDC__
#pragma nopackwarning
#endif
2015-08-24 22:08:15 +00:00
#ifdef _M_X64
/* Use 8-byte alignment on 64-bit architectures, so pointers are aligned */
#pragma pack(push,8)
#else
2008-10-21 16:19:02 +00:00
#pragma pack(push,4)
2015-08-24 22:08:15 +00:00
#endif
2008-10-21 16:19:02 +00:00
#endif /* Compiler needs structure packing set */
2015-08-24 22:08:15 +00:00
#ifndef SDL_INLINE
#if defined(__GNUC__)
#define SDL_INLINE __inline__
#elif defined(_MSC_VER) || defined(__BORLANDC__) || \
defined(__DMC__) || defined(__SC__) || \
defined(__WATCOMC__) || defined(__LCC__) || \
defined(__DECC)
#define SDL_INLINE __inline
2008-10-21 16:19:02 +00:00
#ifndef __inline__
2015-08-24 22:08:15 +00:00
#define __inline__ __inline
2008-10-21 16:19:02 +00:00
#endif
#else
2015-08-24 22:08:15 +00:00
#define SDL_INLINE inline
2008-10-21 16:19:02 +00:00
#ifndef __inline__
#define __inline__ inline
#endif
2015-08-24 22:08:15 +00:00
#endif
#endif /* SDL_INLINE not defined */
2008-10-21 16:19:02 +00:00
2015-08-24 22:08:15 +00:00
#ifndef SDL_FORCE_INLINE
#if defined(_MSC_VER)
#define SDL_FORCE_INLINE __forceinline
#elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) )
#define SDL_FORCE_INLINE __attribute__((always_inline)) static __inline__
#else
#define SDL_FORCE_INLINE static SDL_INLINE
2008-10-21 16:19:02 +00:00
#endif
2015-08-24 22:08:15 +00:00
#endif /* SDL_FORCE_INLINE not defined */
2008-10-21 16:19:02 +00:00
2015-08-24 22:08:15 +00:00
/* Apparently this is needed by several Windows compilers */
2008-10-21 16:19:02 +00:00
#if !defined(__MACH__)
#ifndef NULL
#ifdef __cplusplus
#define NULL 0
#else
#define NULL ((void *)0)
#endif
#endif /* NULL */
#endif /* ! Mac OS X - breaks precompiled headers */