Changeset 3322 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jun 27, 2007 8:27:57 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/uniread.cpp
r2981 r3322 196 196 * @param pszStr The string to duplicate. 197 197 */ 198 static char *DupStr(c har *pszStr)198 static char *DupStr(const char *pszStr) 199 199 { 200 200 if (!*pszStr) … … 218 218 RTUNICP SimpleLowerCaseMapping; 219 219 RTUNICP SimpleTitleCaseMapping; 220 c har*pszName;220 const char *pszName; 221 221 /** Set if this is an unused entry */ 222 222 unsigned fNullEntry : 1; … … 268 268 269 269 /* unprocess stuff, so far. */ 270 c har *pszGeneralCategory;271 c har *pszCanonicalCombiningClass;272 c har *pszBidiClass;273 c har *pszDecompositionType;274 c har *pszDecompositionMapping;275 c har *pszNumericType;276 c har *pszNumericValue;277 c har *pszBidiMirrored;278 c har *pszUnicode1Name;279 c har *pszISOComment;270 const char *pszGeneralCategory; 271 const char *pszCanonicalCombiningClass; 272 const char *pszBidiClass; 273 const char *pszDecompositionType; 274 const char *pszDecompositionMapping; 275 const char *pszNumericType; 276 const char *pszNumericValue; 277 const char *pszBidiMirrored; 278 const char *pszUnicode1Name; 279 const char *pszISOComment; 280 280 } g_aCPInfo[0xf0000]; 281 281
Note:
See TracChangeset
for help on using the changeset viewer.