OLD | NEW |
1 /* | 1 /* |
2 ********************************************************************** | 2 ********************************************************************** |
3 * Copyright (C) 1999-2005, International Business Machines | 3 * Copyright (C) 1999-2005, International Business Machines |
4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
5 ********************************************************************** | 5 ********************************************************************** |
6 * Date Name Description | 6 * Date Name Description |
7 * 03/14/00 aliu Creation. | 7 * 03/14/00 aliu Creation. |
8 * 06/27/00 aliu Change from C++ class to C struct | 8 * 06/27/00 aliu Change from C++ class to C struct |
9 ********************************************************************** | 9 ********************************************************************** |
10 */ | 10 */ |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 /** | 83 /** |
84 * The error itself and/or textual context after the error. | 84 * The error itself and/or textual context after the error. |
85 * Null-terminated. The empty string if not supported by parser. | 85 * Null-terminated. The empty string if not supported by parser. |
86 * @stable ICU 2.0 | 86 * @stable ICU 2.0 |
87 */ | 87 */ |
88 UChar postContext[U_PARSE_CONTEXT_LEN]; | 88 UChar postContext[U_PARSE_CONTEXT_LEN]; |
89 | 89 |
90 } UParseError; | 90 } UParseError; |
91 | 91 |
92 #endif | 92 #endif |
OLD | NEW |