summaryrefslogtreecommitdiff
path: root/src/classlibnative/inc/nls.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/classlibnative/inc/nls.h')
-rw-r--r--src/classlibnative/inc/nls.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/classlibnative/inc/nls.h b/src/classlibnative/inc/nls.h
new file mode 100644
index 0000000000..872573982b
--- /dev/null
+++ b/src/classlibnative/inc/nls.h
@@ -0,0 +1,34 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+////////////////////////////////////////////////////////////////////////////
+//
+// Module: NLS
+//
+
+//
+// Purpose: This module defines the common header information for
+// the Globalization classes.
+//
+// Date: August 12, 1998
+//
+////////////////////////////////////////////////////////////////////////////
+
+
+#ifndef _NLS_H_
+#define _NLS_H_
+
+
+//
+// Constant Declarations.
+//
+
+#define HIGH_SURROGATE_START 0xd800
+#define HIGH_SURROGATE_END 0xdbff
+#define LOW_SURROGATE_START 0xdc00
+#define LOW_SURROGATE_END 0xdfff
+
+#define PRIVATE_USE_BEGIN 0xe000
+#define PRIVATE_USE_END 0xf8ff
+
+#endif // _NLS_H_