begin_code.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. /* This file sets things up for C dynamic library function definitions,
  19.    static inlined functions, and structures aligned at 4-byte alignment.
  20.    If you don't like ugly C preprocessor code, don't look at this file. :)
  21. */
  22. /* This shouldn't be nested -- included it around code only. */
  23. #ifdef _begin_code_h
  24. #error Nested inclusion of begin_code.h
  25. #endif
  26. #define _begin_code_h
  27. /* Make sure the correct platform symbols are defined */
  28. #if !defined(WIN32) && defined(_WIN32)
  29. #define WIN32
  30. #endif /* Windows */
  31. /* Some compilers use a special export keyword */
  32. #ifndef DECLSPEC
  33. # ifdef __BEOS__
  34. #  if defined(__GNUC__)
  35. #   define DECLSPEC __declspec(dllexport)
  36. #  else
  37. #   define DECLSPEC __declspec(export)
  38. #  endif
  39. # else
  40. # ifdef WIN32
  41. #  ifdef __BORLANDC__
  42. #   ifdef BUILD_SDL
  43. #    define DECLSPEC __declspec(dllexport)
  44. #   else
  45. #    define DECLSPEC __declspec(dllimport)
  46. #   endif
  47. #  else
  48. #   define DECLSPEC __declspec(dllexport)
  49. #  endif
  50. # else
  51. #  define DECLSPEC
  52. # endif
  53. # endif
  54. #endif
  55. /* By default SDL uses the C calling convention */
  56. #ifndef SDLCALL
  57. #ifdef WIN32
  58. #define SDLCALL __cdecl
  59. #else
  60. #define SDLCALL
  61. #endif
  62. #endif /* SDLCALL */
  63. /* Removed DECLSPEC on Symbian OS because SDL cannot be a DLL in EPOC */
  64. #ifdef __SYMBIAN32__ 
  65. #undef DECLSPEC
  66. #define DECLSPEC
  67. #endif /* __SYMBIAN32__ */
  68. /* Force structure packing at 4 byte alignment.
  69.    This is necessary if the header is included in code which has structure
  70.    packing set to an alternate value, say for loading structures from disk.
  71.    The packing is reset to the previous value in close_code.h
  72.  */
  73. #if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__)
  74. #ifdef _MSC_VER
  75. #pragma warning(disable: 4103)
  76. #endif
  77. #ifdef __BORLANDC__
  78. #pragma nopackwarning
  79. #endif
  80. #pragma pack(push,4)
  81. #elif (defined(__MWERKS__) && defined(macintosh))
  82. #pragma options align=mac68k4byte
  83. #pragma enumsalwaysint on
  84. #endif /* Compiler needs structure packing set */
  85. /* Set up compiler-specific options for inlining functions */
  86. #ifndef SDL_INLINE_OKAY
  87. #ifdef __GNUC__
  88. #define SDL_INLINE_OKAY
  89. #else
  90. /* Add any special compiler-specific cases here */
  91. #if defined(_MSC_VER) || defined(__BORLANDC__) || 
  92.     defined(__DMC__) || defined(__SC__) || 
  93.     defined(__WATCOMC__) || defined(__LCC__)
  94. #ifndef __inline__
  95. #define __inline__ __inline
  96. #endif
  97. #define SDL_INLINE_OKAY
  98. #else
  99. #if !defined(__MRC__) && !defined(_SGI_SOURCE)
  100. #define __inline__ inline
  101. #define SDL_INLINE_OKAY
  102. #endif /* Not a funky compiler */
  103. #endif /* Visual C++ */
  104. #endif /* GNU C */
  105. #endif /* SDL_INLINE_OKAY */
  106. /* If inlining isn't supported, remove "__inline__", turning static
  107.    inlined functions into static functions (resulting in code bloat
  108.    in all files which include the offending header files)
  109. */
  110. #ifndef SDL_INLINE_OKAY
  111. #define __inline__
  112. #endif
  113. /* Apparently this is needed by several Windows compilers */
  114. #if !defined(__MACH__)
  115. #ifndef NULL
  116. #ifdef __cplusplus
  117. #define NULL 0
  118. #else
  119. #define NULL ((void *)0)
  120. #endif
  121. #endif /* NULL */
  122. #endif /* ! MacOS X - breaks precompiled headers */