slouken@0
|
1 |
/*
|
slouken@0
|
2 |
SDL - Simple DirectMedia Layer
|
slouken@1312
|
3 |
Copyright (C) 1997-2006 Sam Lantinga
|
slouken@0
|
4 |
|
slouken@0
|
5 |
This library is free software; you can redistribute it and/or
|
slouken@1312
|
6 |
modify it under the terms of the GNU Lesser General Public
|
slouken@0
|
7 |
License as published by the Free Software Foundation; either
|
slouken@1312
|
8 |
version 2.1 of the License, or (at your option) any later version.
|
slouken@0
|
9 |
|
slouken@0
|
10 |
This library is distributed in the hope that it will be useful,
|
slouken@0
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
slouken@0
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
slouken@1312
|
13 |
Lesser General Public License for more details.
|
slouken@0
|
14 |
|
slouken@1312
|
15 |
You should have received a copy of the GNU Lesser General Public
|
slouken@1312
|
16 |
License along with this library; if not, write to the Free Software
|
slouken@1312
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
slouken@0
|
18 |
|
slouken@0
|
19 |
Sam Lantinga
|
slouken@251
|
20 |
slouken@libsdl.org
|
slouken@0
|
21 |
*/
|
slouken@0
|
22 |
|
slouken@0
|
23 |
/* General data types used by the SDL library */
|
slouken@0
|
24 |
|
slouken@0
|
25 |
#ifndef _SDL_types_h
|
slouken@0
|
26 |
#define _SDL_types_h
|
slouken@0
|
27 |
|
slouken@1330
|
28 |
#include <sys/types.h>
|
slouken@1330
|
29 |
#ifdef _MSC_VER
|
slouken@1346
|
30 |
#ifndef _SIZE_T_DEFINED
|
slouken@1346
|
31 |
#ifdef _WIN64
|
slouken@1346
|
32 |
typedef unsigned __int64 size_t;
|
slouken@1346
|
33 |
#else
|
slouken@1346
|
34 |
typedef _W64 unsigned int size_t;
|
slouken@1346
|
35 |
#endif
|
slouken@1346
|
36 |
#define _SIZE_T_DEFINED
|
slouken@1346
|
37 |
#endif
|
slouken@1345
|
38 |
typedef size_t uintptr_t;
|
slouken@1330
|
39 |
#endif
|
slouken@1330
|
40 |
|
slouken@1330
|
41 |
/* The number of elements in an array */
|
slouken@1330
|
42 |
#define SDL_arraysize(array) (sizeof(array)/sizeof(array[0]))
|
slouken@1330
|
43 |
#define SDL_TABLESIZE(table) SDL_arraysize(table)
|
slouken@0
|
44 |
|
slouken@0
|
45 |
/* Basic data types */
|
slouken@1330
|
46 |
typedef enum SDL_bool {
|
slouken@0
|
47 |
SDL_FALSE = 0,
|
slouken@0
|
48 |
SDL_TRUE = 1
|
slouken@0
|
49 |
} SDL_bool;
|
slouken@908
|
50 |
|
slouken@908
|
51 |
#ifdef H_MMBASIC /* mmbasic.h (Tru64 MME) */
|
slouken@908
|
52 |
/* Some of the basic types are already defined in mmbasic.h */
|
slouken@908
|
53 |
typedef signed char Sint8;
|
slouken@908
|
54 |
typedef signed short Sint16;
|
slouken@908
|
55 |
typedef signed int Sint32;
|
slouken@908
|
56 |
#else
|
slouken@0
|
57 |
typedef unsigned char Uint8;
|
slouken@0
|
58 |
typedef signed char Sint8;
|
slouken@0
|
59 |
typedef unsigned short Uint16;
|
slouken@0
|
60 |
typedef signed short Sint16;
|
slouken@0
|
61 |
typedef unsigned int Uint32;
|
slouken@0
|
62 |
typedef signed int Sint32;
|
slouken@908
|
63 |
#endif
|
slouken@0
|
64 |
|
slouken@0
|
65 |
/* Figure out how to support 64-bit datatypes */
|
slouken@0
|
66 |
#if !defined(__STRICT_ANSI__)
|
slouken@912
|
67 |
#ifdef __osf__ /* Tru64 */
|
slouken@908
|
68 |
#define SDL_HAS_64BIT_TYPE long
|
icculus@1190
|
69 |
#elif defined(__GNUC__) || defined(__MWERKS__) || defined(__SUNPRO_C) || defined(__DECC) || defined(__WATCOMC__)
|
slouken@0
|
70 |
#define SDL_HAS_64BIT_TYPE long long
|
slouken@0
|
71 |
#elif defined(_MSC_VER) /* VC++ */
|
slouken@0
|
72 |
#define SDL_HAS_64BIT_TYPE __int64
|
slouken@0
|
73 |
#endif
|
slouken@0
|
74 |
#endif /* !__STRICT_ANSI__ */
|
slouken@0
|
75 |
|
slouken@173
|
76 |
/* The 64-bit type isn't available on EPOC/Symbian OS */
|
slouken@173
|
77 |
#ifdef __SYMBIAN32__
|
slouken@173
|
78 |
#undef SDL_HAS_64BIT_TYPE
|
slouken@173
|
79 |
#endif
|
slouken@173
|
80 |
|
slouken@0
|
81 |
/* The 64-bit datatype isn't supported on all platforms */
|
slouken@0
|
82 |
#ifdef SDL_HAS_64BIT_TYPE
|
slouken@654
|
83 |
#ifndef H_MMBASIC
|
slouken@0
|
84 |
typedef unsigned SDL_HAS_64BIT_TYPE Uint64;
|
slouken@654
|
85 |
#endif
|
slouken@0
|
86 |
typedef SDL_HAS_64BIT_TYPE Sint64;
|
slouken@0
|
87 |
#else
|
slouken@0
|
88 |
/* This is really just a hack to prevent the compiler from complaining */
|
slouken@0
|
89 |
typedef struct {
|
slouken@0
|
90 |
Uint32 hi;
|
slouken@0
|
91 |
Uint32 lo;
|
slouken@0
|
92 |
} Uint64, Sint64;
|
slouken@0
|
93 |
#endif
|
slouken@0
|
94 |
|
slouken@0
|
95 |
/* Make sure the types really have the right sizes */
|
slouken@0
|
96 |
#define SDL_COMPILE_TIME_ASSERT(name, x) \
|
slouken@0
|
97 |
typedef int SDL_dummy_ ## name[(x) * 2 - 1]
|
slouken@0
|
98 |
|
slouken@0
|
99 |
SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1);
|
slouken@0
|
100 |
SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1);
|
slouken@0
|
101 |
SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
|
slouken@0
|
102 |
SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2);
|
slouken@0
|
103 |
SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4);
|
slouken@0
|
104 |
SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4);
|
slouken@0
|
105 |
SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
|
slouken@0
|
106 |
SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
|
slouken@0
|
107 |
|
slouken@463
|
108 |
/* Check to make sure enums are the size of ints, for structure packing.
|
slouken@463
|
109 |
For both Watcom C/C++ and Borland C/C++ the compiler option that makes
|
slouken@463
|
110 |
enums having the size of an int must be enabled.
|
slouken@463
|
111 |
This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11).
|
slouken@463
|
112 |
*/
|
slouken@534
|
113 |
/* Enable enums always int in CodeWarrior (for MPW use "-enum int") */
|
slouken@534
|
114 |
#ifdef __MWERKS__
|
slouken@534
|
115 |
#pragma enumsalwaysint on
|
slouken@534
|
116 |
#endif
|
slouken@534
|
117 |
|
slouken@463
|
118 |
typedef enum {
|
slouken@463
|
119 |
DUMMY_ENUM_VALUE
|
slouken@463
|
120 |
} SDL_DUMMY_ENUM;
|
slouken@463
|
121 |
|
slouken@463
|
122 |
SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int));
|
slouken@463
|
123 |
|
slouken@0
|
124 |
#endif
|