Added a boot preferences utility. It is currently specific to GRUB2,
[AROS.git] / workbench / prefs / boot / locale.h
blobf77cd0e304336abb5233a6052d60a674eff4a234
1 #ifndef _LOCALE_H_
2 #define _LOCALE_H_
4 /*
5 Copyright © 2009, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <exec/types.h>
11 #define CATCOMP_NUMBERS
12 #include "strings.h"
14 /*** Prototypes *************************************************************/
15 /* Main *********************************************************************/
16 CONST_STRPTR _(ULONG ID); /* Get a message, as a STRPTR */
17 CONST_STRPTR L_(ULONG ID); /* Get a locale string, as a STRPTR */
18 #define __(id) ((IPTR)_(id)) /* Get a message, as an IPTR */
20 /* Setup ********************************************************************/
21 VOID Locale_Initialize(VOID);
22 VOID Locale_Deinitialize(VOID);
24 #endif /* _LOCALE_H_ */