summaryrefslogtreecommitdiff
path: root/src/classlibnative/inc/nls.h
blob: 872573982beca72d33d3ff39b4a04c26e6c30876 (plain)
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
// 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_