| OLD | NEW |
| 1 /* | 1 /* |
| 2 ****************************************************************************** | 2 ****************************************************************************** |
| 3 * | 3 * |
| 4 * Copyright (C) 2000-2011, International Business Machines | 4 * Copyright (C) 2000-2011, International Business Machines |
| 5 * Corporation and others. All Rights Reserved. | 5 * Corporation and others. All Rights Reserved. |
| 6 * | 6 * |
| 7 ****************************************************************************** | 7 ****************************************************************************** |
| 8 * file name: ucnvscsu.c | 8 * file name: ucnvscsu.c |
| 9 * encoding: US-ASCII | 9 * encoding: US-ASCII |
| 10 * tab size: 8 (not used) | 10 * tab size: 8 (not used) |
| 11 * indentation:4 | 11 * indentation:4 |
| 12 * | 12 * |
| 13 * created on: 2000nov18 | 13 * created on: 2000nov18 |
| 14 * created by: Markus W. Scherer | 14 * created by: Markus W. Scherer |
| 15 * | 15 * |
| 16 * This is an implementation of the Standard Compression Scheme for Unicode | 16 * This is an implementation of the Standard Compression Scheme for Unicode |
| 17 * as defined in http://www.unicode.org/unicode/reports/tr6/ . | 17 * as defined in http://www.unicode.org/unicode/reports/tr6/ . |
| 18 * Reserved commands and window settings are treated as illegal sequences and | 18 * Reserved commands and window settings are treated as illegal sequences and |
| 19 * will result in callback calls. | 19 * will result in callback calls. |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #include "unicode/utypes.h" | 22 #include "unicode/utypes.h" |
| 23 | 23 |
| 24 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_NON_HTML5_CONVERSION | 24 #if !UCONFIG_NO_CONVERSION |
| 25 | 25 |
| 26 #include "unicode/ucnv.h" | 26 #include "unicode/ucnv.h" |
| 27 #include "unicode/ucnv_cb.h" | 27 #include "unicode/ucnv_cb.h" |
| 28 #include "unicode/utf16.h" | 28 #include "unicode/utf16.h" |
| 29 #include "ucnv_bld.h" | 29 #include "ucnv_bld.h" |
| 30 #include "ucnv_cnv.h" | 30 #include "ucnv_cnv.h" |
| 31 #include "cmemory.h" | 31 #include "cmemory.h" |
| 32 | 32 |
| 33 /* SCSU definitions --------------------------------------------------------- */ | 33 /* SCSU definitions --------------------------------------------------------- */ |
| 34 | 34 |
| (...skipping 1974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2009 { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */ | 2009 { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */ |
| 2010 }; | 2010 }; |
| 2011 | 2011 |
| 2012 const UConverterSharedData _SCSUData={ | 2012 const UConverterSharedData _SCSUData={ |
| 2013 sizeof(UConverterSharedData), ~((uint32_t)0), | 2013 sizeof(UConverterSharedData), ~((uint32_t)0), |
| 2014 NULL, NULL, &_SCSUStaticData, FALSE, &_SCSUImpl, | 2014 NULL, NULL, &_SCSUStaticData, FALSE, &_SCSUImpl, |
| 2015 0 | 2015 0 |
| 2016 }; | 2016 }; |
| 2017 | 2017 |
| 2018 #endif | 2018 #endif |
| OLD | NEW |