summaryrefslogtreecommitdiffstats
path: root/private/crt32/misc/nlsdata3.c
diff options
context:
space:
mode:
Diffstat (limited to 'private/crt32/misc/nlsdata3.c')
-rw-r--r--private/crt32/misc/nlsdata3.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/private/crt32/misc/nlsdata3.c b/private/crt32/misc/nlsdata3.c
new file mode 100644
index 000000000..5e57d2111
--- /dev/null
+++ b/private/crt32/misc/nlsdata3.c
@@ -0,0 +1,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 */