summaryrefslogtreecommitdiffstats
path: root/private/crt32/misc/nlsdata3.c
blob: 5e57d21113057e72dcfffe2c64c5c0c34538a28a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/***
*nlsdata3.c - globals for international library - locale id's
*
*	Copyright (c) 1991-1993, Microsoft Corporation. All rights reserved.
*
*Purpose:
*	This module contains the definition of locale id's.  These id's and
*	this file should only be visible to the _init_(locale category)
*	functions.  This module is separated from nlsdatax.c for granularity.
*	
*Revision History:
*	12-01-91  ETC	Created.
*	01-25-93  KRS	Updated.
*
*******************************************************************************/

#ifdef _INTL
#include <locale.h>
#include <setlocal.h>

/*
 *  Locale id's.
 */
/* UNDONE: define struct consisting of LCID/LANGID, CTRY ID, and CP. */
LC_ID _lc_id[LC_MAX-LC_MIN+1] = {
	{ 0, 0, 0 },
	{ 0, 0, 0 },
	{ 0, 0, 0 },
	{ 0, 0, 0 },
	{ 0, 0, 0 },
	{ 0, 0, 0 }
};

#endif /* _INTL */