- Update stm32f7_discovery target description
[AROS.git] / workbench / system / AboutAROS / locale.h
blob348313644018f959a04dc92cc3e095d07c4b3141
1 #ifndef _LOCALE_H
2 #define _LOCALE_H
4 /*
5 Copyright © 2003-2004, The AROS Development Team. All rights reserved.
6 This file is part of the About program, which is distributed under
7 the terms of version 2 of the GNU General Public License.
9 $Id$
12 #include <exec/types.h>
14 #define CATCOMP_NUMBERS
15 #include "strings.h"
17 /*** Message aliases ********************************************************/
18 #if AROS_BUILD_TYPE == AROS_BUILD_TYPE_PERSONAL
19 # define MSG_BUILD_TYPE MSG_PERSONAL_BUILD
20 #elif AROS_BUILD_TYPE == AROS_BUILD_TYPE_NIGHTLY
21 # define MSG_BUILD_TYPE MSG_NIGHTLY_BUILD
22 #elif AROS_BUILD_TYPE == AROS_BUILD_TYPE_SNAPSHOT
23 # define MSG_BUILD_TYPE MSG_SNAPSHOT
24 #elif AROS_BUILD_TYPE == AROS_BUILD_TYPE_MILESTONE
25 # define MSG_BUILD_TYPE MSG_MILESTONE
26 #elif AROS_BUILD_TYPE == AROS_BUILD_TYPE_RELEASE
27 # define MSG_BUILD_TYPE MSG_RELEASE
28 #else
29 # error Unknown AROS_BUILD_TYPE
30 #endif
32 /*** Prototypes *************************************************************/
33 /* Main *********************************************************************/
34 STRPTR _(ULONG ID); /* Get a message, as a STRPTR */
35 #define __(id) ((IPTR) _(id)) /* Get a message, as an IPTR */
37 #endif /* _LOCALE_H */