annotate th_types.h @ 578:ac2947ac9ef8

Define PRI*_SIZE_T from PRIu32/64 based on platform, this is cleaner and avoids issues on MINGW64.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 09 Jan 2020 18:29:10 +0200
parents ebdfc1fe1c98
children c054e5831dfb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 /*
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 * Type definations
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 * Programmed and designed by Matti 'ccr' Hamalainen
553
3a852e9f70a6 Bump copyright years.
Matti Hamalainen <ccr@tnsp.org>
parents: 495
diff changeset
4 * (C) Copyright 2002-2020 Tecnic Software productions (TNSP)
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 *
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 * Please read file 'COPYING' for information on license and distribution.
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 */
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8 /* If your code uses "config.h", you need to #include
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 * it before including this header.
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 */
392
851468fda833 s/_TH_TYPES_H/TH_TYPES_H/g
Matti Hamalainen <ccr@tnsp.org>
parents: 391
diff changeset
11 #ifndef TH_TYPES_H
851468fda833 s/_TH_TYPES_H/TH_TYPES_H/g
Matti Hamalainen <ccr@tnsp.org>
parents: 391
diff changeset
12 #define TH_TYPES_H 1
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13
573
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
14
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
15 // Check for system type
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
16 #if defined(__WIN64) || defined(_WIN64) || defined(__WIN32) || defined(_WIN32)
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
17 # define TH_PLAT_WINDOWS 1
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
18 #elif defined(__DJGPP__) && __DJGPP__ >= 2
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
19 # define TH_PLAT_DOS 1
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
20 # undef __STRICT_ANSI__
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
21 #else
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
22 # define TH_PLAT_UNIX 1
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
23 #endif
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
24
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
25
150
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
26 // Check for standard headers
575
ebdfc1fe1c98 Fixes to the type definitions.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
27 #if defined(HAVE_INTTYPES_H)
ebdfc1fe1c98 Fixes to the type definitions.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
28 # include <inttypes.h>
ebdfc1fe1c98 Fixes to the type definitions.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
29 # ifndef HAVE_STDINT_H
ebdfc1fe1c98 Fixes to the type definitions.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
30 # define HAVE_STDINT_H 1
ebdfc1fe1c98 Fixes to the type definitions.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
31 # endif
ebdfc1fe1c98 Fixes to the type definitions.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
32 #elif defined(HAVE_STDINT_H)
150
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
33 # include <stdint.h>
394
7df5991a0ed3 Handle HAVE_STDINT_H vs HAVE_SYS_TYPES_H somewhat more sanely.
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
34 #elif defined(HAVE_SYS_TYPES_H)
150
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
35 # include <sys/types.h>
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
36 #endif
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
37
391
6e6c8c4fc210 Buildsystem improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
38
6e6c8c4fc210 Buildsystem improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
39
6e6c8c4fc210 Buildsystem improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
40 // Check for arch bitness
573
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
41 #if !defined(TH_ARCH) && (defined(__WIN64) || defined(_WIN64))
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
42 # define TH_ARCH 64
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
43 #endif
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
44
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
45 #if !defined(TH_ARCH) && (defined(__WIN32) || defined(_WIN32))
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
46 # define TH_ARCH 32
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
47 #endif
7c0aa6bf484a Improve system bit-ness handling and target platform.
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
48
495
30c57a9ea3be Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 494
diff changeset
49 #if !defined(TH_ARCH)
30c57a9ea3be Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 494
diff changeset
50 # if UINTPTR_MAX == 0xffffffff
30c57a9ea3be Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 494
diff changeset
51 # define TH_ARCH 32
30c57a9ea3be Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 494
diff changeset
52 # elif UINTPTR_MAX == 0xffffffffffffffff
30c57a9ea3be Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 494
diff changeset
53 # define TH_ARCH 64
30c57a9ea3be Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 494
diff changeset
54 # endif
391
6e6c8c4fc210 Buildsystem improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
55 #endif
6e6c8c4fc210 Buildsystem improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
56
6e6c8c4fc210 Buildsystem improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
57
150
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
58 #if !defined(TH_ARCH)
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
59 # if defined(__LP64__) || defined(_LP64)
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
60 # define TH_ARCH 64
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
61 # else
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
62 # define TH_ARCH 32
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
63 # endif
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
64 #endif
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
65
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
66 // Do we have a valid arch?
398
9db5d3f6098d Comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
67 // If so, set some printf specifiers and other useful things
150
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
68 #if TH_ARCH == 32
395
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
69 # ifndef HAVE_INTTYPES_H
398
9db5d3f6098d Comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
70 // If we don't have ISO C99 inttypes.h, define PRI* macros
395
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
71 # define PRIu32 "u"
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
72 # define PRId32 "d"
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
73 # define PRIx32 "x"
396
337f224b99fd Add PRIi{32,64} macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 395
diff changeset
74 # define PRIi32 "i"
397
dd95ea5901da Add PRIo{32,64} macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
75 # define PRIo32 "o"
395
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
76 # define PRIu64 "llu"
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
77 # define PRId64 "lld"
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
78 # define PRIx64 "llx"
396
337f224b99fd Add PRIi{32,64} macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 395
diff changeset
79 # define PRIi64 "lli"
397
dd95ea5901da Add PRIo{32,64} macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
80 # define PRIo64 "llo"
395
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
81 # endif
578
ac2947ac9ef8 Define PRI*_SIZE_T from PRIu32/64 based on platform, this is cleaner and
Matti Hamalainen <ccr@tnsp.org>
parents: 575
diff changeset
82 # define PRIu_SIZE_T PRIu32
ac2947ac9ef8 Define PRI*_SIZE_T from PRIu32/64 based on platform, this is cleaner and
Matti Hamalainen <ccr@tnsp.org>
parents: 575
diff changeset
83 # define PRId_SSIZE_T PRId32
ac2947ac9ef8 Define PRI*_SIZE_T from PRIu32/64 based on platform, this is cleaner and
Matti Hamalainen <ccr@tnsp.org>
parents: 575
diff changeset
84 # define PRIx_SIZE_T PRIx32
308
0078dc5f6260 Define TH_PTRSIZE and UINTPTR_MAX if not defined already.
Matti Hamalainen <ccr@tnsp.org>
parents: 307
diff changeset
85 # ifndef TH_PTRSIZE
0078dc5f6260 Define TH_PTRSIZE and UINTPTR_MAX if not defined already.
Matti Hamalainen <ccr@tnsp.org>
parents: 307
diff changeset
86 # define TH_PTRSIZE 32
0078dc5f6260 Define TH_PTRSIZE and UINTPTR_MAX if not defined already.
Matti Hamalainen <ccr@tnsp.org>
parents: 307
diff changeset
87 # endif
400
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
88 # ifndef INTPTR_MIN
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
89 # define INTPTR_MIN (-0x7fffffffL - 1)
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
90 # define INTPTR_MAX ( 0x7fffffffL)
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
91 # define UINTPTR_MAX ( 0xffffffffUL)
308
0078dc5f6260 Define TH_PTRSIZE and UINTPTR_MAX if not defined already.
Matti Hamalainen <ccr@tnsp.org>
parents: 307
diff changeset
92 # endif
150
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
93 #elif TH_ARCH == 64
395
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
94 # ifndef HAVE_INTTYPES_H
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
95 # define PRIu32 "u"
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
96 # define PRId32 "d"
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
97 # define PRIx32 "x"
396
337f224b99fd Add PRIi{32,64} macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 395
diff changeset
98 # define PRIi32 "i"
397
dd95ea5901da Add PRIo{32,64} macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
99 # define PRIo32 "o"
395
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
100 # define PRIu64 "lu"
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
101 # define PRId64 "ld"
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
102 # define PRIx64 "lx"
396
337f224b99fd Add PRIi{32,64} macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 395
diff changeset
103 # define PRIi64 "li"
397
dd95ea5901da Add PRIo{32,64} macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
104 # define PRIo64 "lo"
395
bffd3caf2d2c Rename TH_PRI{u,d,x}* macros to match with standard ISO C99 inttypes.h PRI*.
Matti Hamalainen <ccr@tnsp.org>
parents: 394
diff changeset
105 # endif
578
ac2947ac9ef8 Define PRI*_SIZE_T from PRIu32/64 based on platform, this is cleaner and
Matti Hamalainen <ccr@tnsp.org>
parents: 575
diff changeset
106 # define PRIu_SIZE_T PRIu64
ac2947ac9ef8 Define PRI*_SIZE_T from PRIu32/64 based on platform, this is cleaner and
Matti Hamalainen <ccr@tnsp.org>
parents: 575
diff changeset
107 # define PRId_SSIZE_T PRId64
ac2947ac9ef8 Define PRI*_SIZE_T from PRIu32/64 based on platform, this is cleaner and
Matti Hamalainen <ccr@tnsp.org>
parents: 575
diff changeset
108 # define PRIx_SIZE_T PRIx64
308
0078dc5f6260 Define TH_PTRSIZE and UINTPTR_MAX if not defined already.
Matti Hamalainen <ccr@tnsp.org>
parents: 307
diff changeset
109 # ifndef TH_PTRSIZE
0078dc5f6260 Define TH_PTRSIZE and UINTPTR_MAX if not defined already.
Matti Hamalainen <ccr@tnsp.org>
parents: 307
diff changeset
110 # define TH_PTRSIZE 64
0078dc5f6260 Define TH_PTRSIZE and UINTPTR_MAX if not defined already.
Matti Hamalainen <ccr@tnsp.org>
parents: 307
diff changeset
111 # endif
400
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
112 # ifndef INTPTR_MIN
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
113 # define INTPTR_MIN (-0x7fffffffffffffffL - 1)
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
114 # define INTPTR_MAX ( 0x7fffffffffffffffL)
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
115 # define UINTPTR_MAX ( 0xffffffffffffffffUL)
308
0078dc5f6260 Define TH_PTRSIZE and UINTPTR_MAX if not defined already.
Matti Hamalainen <ccr@tnsp.org>
parents: 307
diff changeset
116 # endif
150
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
117 #else
9bc7f60f3013 More portability stuff. :|
Matti Hamalainen <ccr@tnsp.org>
parents: 149
diff changeset
118 # error Could not determine architecture (32/64bit), please define TH_ARCH=32 or 64
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119 #endif
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
120
400
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
121
575
ebdfc1fe1c98 Fixes to the type definitions.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
122 /* Default assumptions for these types should be ok for most 32/64bit platforms...
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
123 */
575
ebdfc1fe1c98 Fixes to the type definitions.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
124 #ifndef HAVE_STDINT_H
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
125 typedef unsigned char uint8_t;
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
126 typedef signed char int8_t;
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
127 typedef unsigned short int uint16_t;
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
128 typedef signed short int int16_t;
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
129 typedef unsigned int uint32_t;
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
130 typedef signed int int32_t;
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
131 typedef unsigned long long uint64_t;
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
132 typedef signed long long int64_t;
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
133
400
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
134 #if TH_ARCH == 32
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
135 typedef long long int intmax_t;
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
136 typedef unsigned long long int uintmax_t;
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
137 #elif TH_ARCH == 64
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
138 typedef long int intmax_t;
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
139 typedef unsigned long int uintmax_t;
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
140 #endif
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
141 #endif
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
142
f7919a143fcb Add some missing types and macros when we do not have inttypes.h or stdint.h
Matti Hamalainen <ccr@tnsp.org>
parents: 398
diff changeset
143
453
efd33accdc81 Break backwards compatibility by renaming BOOL, TRUE and FALSE to lowercase.
Matti Hamalainen <ccr@tnsp.org>
parents: 432
diff changeset
144 /* Define a boolean type, if needed
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
145 */
457
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 456
diff changeset
146 #if !defined(FALSE) && !defined(TRUE) && !defined(BOOL)
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 456
diff changeset
147 typedef enum { FALSE = 0, TRUE = 1 } BOOL;
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 456
diff changeset
148 #endif
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
149
457
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 456
diff changeset
150 #ifndef BOOL
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 456
diff changeset
151 # ifdef bool
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 456
diff changeset
152 # define BOOL bool
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 456
diff changeset
153 # else
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 456
diff changeset
154 # define BOOL int
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 456
diff changeset
155 # endif
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 456
diff changeset
156 #endif
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
157
392
851468fda833 s/_TH_TYPES_H/TH_TYPES_H/g
Matti Hamalainen <ccr@tnsp.org>
parents: 391
diff changeset
158 #endif // TH_TYPES_H