prism2.device: Compiler delint
[AROS.git] / workbench / c / LoadResource / locale.c
blobb964b35bad92ea5af52fd4b89ff2e9e253be5917
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 This file is part of the LoadResource program, which is distributed under
4 the terms of version 2 of the GNU General Public License.
5 */
7 #include <aros/symbolsets.h>
8 #include <exec/types.h>
9 #include <proto/locale.h>
11 #define CATCOMP_ARRAY
12 #include "strings.h"
14 #define CATALOG_NAME "System/C/LoadResource.catalog"
15 #define CATALOG_VERSION 0
17 /*** Variables **************************************************************/
18 static struct Catalog *catalog;
21 /*** Functions **************************************************************/
22 /* Main *********************************************************************/
23 CONST_STRPTR _(ULONG id)
25 if (LocaleBase != NULL && catalog != NULL)
27 return GetCatalogStr(catalog, id, CatCompArray[id].cca_Str);
29 else
31 return CatCompArray[id].cca_Str;
35 /* Setup ********************************************************************/
36 BOOL Locale_Initialize(void)
38 if (LocaleBase != NULL)
40 catalog = OpenCatalog
42 NULL, CATALOG_NAME, OC_Version, CATALOG_VERSION, TAG_DONE
45 else
47 catalog = NULL;
50 return TRUE;
53 void Locale_Deinitialize(void)
55 if(LocaleBase != NULL && catalog != NULL) CloseCatalog(catalog);
58 ADD2INIT(Locale_Initialize, 90);
59 ADD2EXIT(Locale_Deinitialize, 90);