Use TARGET_STRIP instead of STRIP. Needed on OS X.
[AROS.git] / compiler / include / aros / inquire.h
bloba22ef86af7fae0fb7efd7e6d7828afaa81a6d409
1 #ifndef AROS_INQUIRE_H
2 #define AROS_INQUIRE_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: aros.library ArosInquire
9 Lang: english
12 #include <utility/tagitem.h>
14 #define AI_Base (TAG_USER)
16 /* If you use any of these tags, the tag's ti_Data field should point to the
17 location where the result is stored. */
19 /* General tags */
20 #define AI_ArosVersion (AI_Base + 1)
21 /* ULONG: Major AROS version number, e.g. 41 */
23 #define AI_ArosReleaseMajor (AI_Base + 2)
24 /* ULONG: Major AROS release version, e.g. 1 */
26 #define AI_ArosReleaseMinor (AI_Base + 3)
27 /* ULONG: Minor AROS release version, e.g. 11 */
29 #define AI_ArosReleaseDate (AI_Base + 4)
30 /* LONG: Days since 1978-01-01 */
32 #define AI_ArosBuildDate (AI_Base + 5)
33 /* STRPTR */
35 #define AI_ArosVariant (AI_Base + 6)
36 /* STRPTR */
38 #define AI_ArosArchitecture (AI_Base + 7)
39 /* STRPTR */
41 #define AI_ArosABIMajor (AI_Base + 8)
42 /* LONG: Major AROS ABI version, e.g. 1 */
44 /* Architecture specific tags */
46 /* Native Amiga */
47 #define AI_BaseA (AI_Base + 0x10000)
49 #define AI_KickstartBase (AI_BaseA + 1)
50 /* IPTR: Kickstart base address */
52 #define AI_KickstartSize (AI_BaseA + 2)
53 /* IPTR: Kickstart size */
55 #define AI_KickstartVersion (AI_BaseA + 3)
56 /* UWORD: Major Kickstart version */
58 #define AI_KickstartRevision (AI_BaseA + 4)
59 /* UWORD: Minor Kickstart revision */
62 /* Linux */
63 #define AI_BaseL (AI_Base + 0x20000)
67 #endif /* AROS_AROSSUPPORTBASE_H */