Mercurial > sdl-ios-xcode
annotate include/begin_code.h @ 173:83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 11 Sep 2001 20:38:49 +0000 |
parents | 60c7960354e0 |
children | 94645dc9479b |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
3 Copyright (C) 1997, 1998, 1999, 2000, 2001 Sam Lantinga | |
4 | |
5 This library is free software; you can redistribute it and/or | |
6 modify it under the terms of the GNU Library General Public | |
7 License as published by the Free Software Foundation; either | |
8 version 2 of the License, or (at your option) any later version. | |
9 | |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 Library General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU Library General Public | |
16 License along with this library; if not, write to the Free | |
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | |
19 Sam Lantinga | |
20 slouken@devolution.com | |
21 */ | |
22 | |
23 /* This file sets things up for C dynamic library function definitions, | |
24 static inlined functions, and structures aligned at 4-byte alignment. | |
25 If you don't like ugly C preprocessor code, don't look at this file. :) | |
26 */ | |
27 | |
28 /* This shouldn't be nested -- included it around code only. */ | |
29 #ifdef _begin_code_h | |
30 #error Nested inclusion of begin_code.h | |
31 #endif | |
32 #define _begin_code_h | |
33 | |
34 /* Some compilers use a special export keyword */ | |
35 #ifndef DECLSPEC | |
36 # ifdef __BEOS__ | |
37 # if defined(__GNUC__) | |
38 # define DECLSPEC __declspec(dllexport) | |
39 # else | |
40 # define DECLSPEC __declspec(export) | |
41 # endif | |
42 # else | |
43 # ifdef WIN32 | |
44 # define DECLSPEC __declspec(dllexport) | |
45 # else | |
46 # define DECLSPEC | |
47 # endif | |
48 # endif | |
49 #endif | |
50 | |
173
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
85
diff
changeset
|
51 /* Removed DECLSPEC on Symbian OS because SDL cannot be a DLL in EPOC */ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
85
diff
changeset
|
52 #ifdef __SYMBIAN32__ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
85
diff
changeset
|
53 #undef DECLSPEC |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
85
diff
changeset
|
54 #define DECLSPEC |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
85
diff
changeset
|
55 #endif // __SYMBIAN32__ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
85
diff
changeset
|
56 |
0 | 57 /* Force structure packing at 4 byte alignment. |
58 This is necessary if the header is included in code which has structure | |
59 packing set to an alternate value, say for loading structures from disk. | |
60 The packing is reset to the previous value in close_code.h | |
61 */ | |
62 #if defined(_MSC_VER) || defined(__MWERKS__) || defined(__WATCOMC__) || defined(__BORLANDC__) | |
63 #ifdef _MSC_VER | |
64 #pragma warning(disable: 4103) | |
65 #endif | |
66 #ifdef __BORLANDC__ | |
67 #pragma nopackwarning | |
68 #endif | |
69 #pragma pack(push,4) | |
70 #endif /* Compiler needs structure packing set */ | |
71 | |
72 /* Set up compiler-specific options for inlining functions */ | |
73 #ifndef SDL_INLINE_OKAY | |
74 #ifdef __GNUC__ | |
75 #define SDL_INLINE_OKAY | |
76 #else | |
77 /* Add any special compiler-specific cases here */ | |
85
60c7960354e0
Added support for Visual C++ inline keyword
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
78 #if defined(_MSC_VER) |
60c7960354e0
Added support for Visual C++ inline keyword
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
79 #define __inline__ __inline |
60c7960354e0
Added support for Visual C++ inline keyword
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
80 #define SDL_INLINE_OKAY |
60c7960354e0
Added support for Visual C++ inline keyword
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
81 #else |
60c7960354e0
Added support for Visual C++ inline keyword
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
82 #if !defined(__MRC__) && !defined(_SGI_SOURCE) |
0 | 83 #define __inline__ inline |
84 #define SDL_INLINE_OKAY | |
85 #endif /* Not a funky compiler */ | |
85
60c7960354e0
Added support for Visual C++ inline keyword
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
86 #endif /* Visual C++ */ |
0 | 87 #endif /* GNU C */ |
88 #endif /* SDL_INLINE_OKAY */ | |
89 | |
90 /* If inlining isn't supported, remove "__inline__", turning static | |
91 inlined functions into static functions (resulting in code bloat | |
92 in all files which include the offending header files) | |
93 */ | |
94 #ifndef SDL_INLINE_OKAY | |
95 #define __inline__ | |
96 #endif | |
97 |