| OLD | NEW |
| 1 /* | 1 /* |
| 2 ********************************************************************** | 2 ********************************************************************** |
| 3 * Copyright (C) 2000-2014, International Business Machines | 3 * Copyright (C) 2000-2014, International Business Machines |
| 4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
| 5 ********************************************************************** | 5 ********************************************************************** |
| 6 * file name: ucnvhz.c | 6 * file name: ucnvhz.c |
| 7 * encoding: US-ASCII | 7 * encoding: US-ASCII |
| 8 * tab size: 8 (not used) | 8 * tab size: 8 (not used) |
| 9 * indentation:4 | 9 * indentation:4 |
| 10 * | 10 * |
| 11 * created on: 2000oct16 | 11 * created on: 2000oct16 |
| 12 * created by: Ram Viswanadha | 12 * created by: Ram Viswanadha |
| 13 * 10/31/2000 Ram Implemented offsets logic function | 13 * 10/31/2000 Ram Implemented offsets logic function |
| 14 * | 14 * |
| 15 */ | 15 */ |
| 16 | 16 |
| 17 #include "unicode/utypes.h" | 17 #include "unicode/utypes.h" |
| 18 | 18 |
| 19 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION | 19 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION && !UCONFIG_NO_NON_H
TML5_CONVERSION |
| 20 | 20 |
| 21 #include "cmemory.h" | 21 #include "cmemory.h" |
| 22 #include "unicode/ucnv.h" | 22 #include "unicode/ucnv.h" |
| 23 #include "unicode/ucnv_cb.h" | 23 #include "unicode/ucnv_cb.h" |
| 24 #include "unicode/uset.h" | 24 #include "unicode/uset.h" |
| 25 #include "unicode/utf16.h" | 25 #include "unicode/utf16.h" |
| 26 #include "ucnv_bld.h" | 26 #include "ucnv_bld.h" |
| 27 #include "ucnv_cnv.h" | 27 #include "ucnv_cnv.h" |
| 28 #include "ucnv_imp.h" | 28 #include "ucnv_imp.h" |
| 29 | 29 |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 sizeof(UConverterSharedData), | 628 sizeof(UConverterSharedData), |
| 629 ~((uint32_t) 0), | 629 ~((uint32_t) 0), |
| 630 NULL, | 630 NULL, |
| 631 NULL, | 631 NULL, |
| 632 &_HZStaticData, | 632 &_HZStaticData, |
| 633 FALSE, | 633 FALSE, |
| 634 &_HZImpl, | 634 &_HZImpl, |
| 635 0 | 635 0 |
| 636 }; | 636 }; |
| 637 | 637 |
| 638 #endif /* #if !UCONFIG_NO_LEGACY_CONVERSION */ | 638 #endif /* #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION && !UCONFI
G_NO_NON_HTML5_CONVERSION */ |
| OLD | NEW |