begin_code.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2014 Sam Lantinga <[email protected]>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. // Modified by Yao Wei Tjong for Urho3D
  19. /**
  20. * \file begin_code.h
  21. *
  22. * This file sets things up for C dynamic library function definitions,
  23. * static inlined functions, and structures aligned at 4-byte alignment.
  24. * If you don't like ugly C preprocessor code, don't look at this file. :)
  25. */
  26. /* This shouldn't be nested -- included it around code only. */
  27. #ifdef _begin_code_h
  28. #error Nested inclusion of begin_code.h
  29. #endif
  30. #define _begin_code_h
  31. #ifndef SDL_DEPRECATED
  32. # if (__GNUC__ >= 4) /* technically, this arrived in gcc 3.1, but oh well. */
  33. # define SDL_DEPRECATED __attribute__((deprecated))
  34. # else
  35. # define SDL_DEPRECATED
  36. # endif
  37. #endif
  38. /* Some compilers use a special export keyword */
  39. // Urho3D: Only export when it is being requested
  40. #ifdef SDL_EXPORTS
  41. #ifndef DECLSPEC
  42. # if defined(__WIN32__) || defined(__WINRT__)
  43. # ifdef __BORLANDC__
  44. # ifdef BUILD_SDL
  45. # define DECLSPEC
  46. # else
  47. # define DECLSPEC __declspec(dllimport)
  48. # endif
  49. # else
  50. # define DECLSPEC __declspec(dllexport)
  51. # endif
  52. # else
  53. # if defined(__GNUC__) && __GNUC__ >= 4
  54. # define DECLSPEC __attribute__ ((visibility("default")))
  55. # elif defined(__GNUC__) && __GNUC__ >= 2
  56. # define DECLSPEC __declspec(dllexport)
  57. # else
  58. # define DECLSPEC
  59. # endif
  60. # endif
  61. #endif
  62. #else
  63. # define DECLSPEC
  64. #endif
  65. /* By default SDL uses the C calling convention */
  66. #ifndef SDLCALL
  67. #if (defined(__WIN32__) || defined(__WINRT__)) && !defined(__GNUC__)
  68. #define SDLCALL __cdecl
  69. #else
  70. #define SDLCALL
  71. #endif
  72. #endif /* SDLCALL */
  73. /* Removed DECLSPEC on Symbian OS because SDL cannot be a DLL in EPOC */
  74. #ifdef __SYMBIAN32__
  75. #undef DECLSPEC
  76. #define DECLSPEC
  77. #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
  82. */
  83. #if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__)
  84. #ifdef _MSC_VER
  85. #pragma warning(disable: 4103)
  86. #endif
  87. #ifdef __BORLANDC__
  88. #pragma nopackwarning
  89. #endif
  90. #ifdef _M_X64
  91. /* Use 8-byte alignment on 64-bit architectures, so pointers are aligned */
  92. #pragma pack(push,8)
  93. #else
  94. #pragma pack(push,4)
  95. #endif
  96. #endif /* Compiler needs structure packing set */
  97. #ifndef SDL_INLINE
  98. #if defined(__GNUC__)
  99. #define SDL_INLINE __inline__
  100. #elif defined(_MSC_VER) || defined(__BORLANDC__) || \
  101. defined(__DMC__) || defined(__SC__) || \
  102. defined(__WATCOMC__) || defined(__LCC__) || \
  103. defined(__DECC)
  104. #define SDL_INLINE __inline
  105. #ifndef __inline__
  106. #define __inline__ __inline
  107. #endif
  108. #else
  109. #define SDL_INLINE inline
  110. #ifndef __inline__
  111. #define __inline__ inline
  112. #endif
  113. #endif
  114. #endif /* SDL_INLINE not defined */
  115. #ifndef SDL_FORCE_INLINE
  116. #if defined(_MSC_VER)
  117. #define SDL_FORCE_INLINE __forceinline
  118. #elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) )
  119. #define SDL_FORCE_INLINE __attribute__((always_inline)) static __inline__
  120. #else
  121. #define SDL_FORCE_INLINE static SDL_INLINE
  122. #endif
  123. #endif /* SDL_FORCE_INLINE not defined */
  124. /* Apparently this is needed by several Windows compilers */
  125. #if !defined(__MACH__)
  126. #ifndef NULL
  127. #ifdef __cplusplus
  128. #define NULL 0
  129. #else
  130. #define NULL ((void *)0)
  131. #endif
  132. #endif /* NULL */
  133. #endif /* ! Mac OS X - breaks precompiled headers */