Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
michael@0 | 2 | * |
michael@0 | 3 | * This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | * |
michael@0 | 7 | * This Original Code has been modified by IBM Corporation. |
michael@0 | 8 | * Modifications made by IBM described herein are |
michael@0 | 9 | * Copyright (c) International Business Machines |
michael@0 | 10 | * Corporation, 1999 |
michael@0 | 11 | * |
michael@0 | 12 | * Modifications to Mozilla code or documentation |
michael@0 | 13 | * identified per MPL Section 3.3 |
michael@0 | 14 | * |
michael@0 | 15 | * Date Modified by Description of modification |
michael@0 | 16 | * 12/09/1999 IBM Corp. Support for IBM codepages - 850,852,55,857,862,864 |
michael@0 | 17 | * 06/24/2003 IBM Corp. Support for IBM codepage 1046 |
michael@0 | 18 | * |
michael@0 | 19 | */ |
michael@0 | 20 | |
michael@0 | 21 | #ifndef nsUCvIBMCID_h___ |
michael@0 | 22 | #define nsUCvIBMCID_h___ |
michael@0 | 23 | |
michael@0 | 24 | #include "nsISupports.h" |
michael@0 | 25 | |
michael@0 | 26 | |
michael@0 | 27 | // Class ID for our CP850ToUnicode charset converter |
michael@0 | 28 | // {2D524FD0-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 29 | #define NS_CP850TOUNICODE_CID \ |
michael@0 | 30 | { 0x2d524fd0, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 31 | |
michael@0 | 32 | // Class ID for our CP852ToUnicode charset converter |
michael@0 | 33 | // {2D524FD1-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 34 | #define NS_CP852TOUNICODE_CID \ |
michael@0 | 35 | { 0x2d524fd1, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 36 | |
michael@0 | 37 | // Class ID for our CP855ToUnicode charset converter |
michael@0 | 38 | // {2D524FD2-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 39 | #define NS_CP855TOUNICODE_CID \ |
michael@0 | 40 | { 0x2d524fd2, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 41 | |
michael@0 | 42 | // Class ID for our CP857ToUnicode charset converter |
michael@0 | 43 | // {2D524FD3-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 44 | #define NS_CP857TOUNICODE_CID \ |
michael@0 | 45 | { 0x2d524fd3, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 46 | |
michael@0 | 47 | // Class ID for our CP862ToUnicode charset converter |
michael@0 | 48 | // {2D524FD4-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 49 | #define NS_CP862TOUNICODE_CID \ |
michael@0 | 50 | { 0x2d524fd4, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 51 | |
michael@0 | 52 | // Class ID for our CP864ToUnicode charset converter |
michael@0 | 53 | // {2D524FD5-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 54 | #define NS_CP864TOUNICODE_CID \ |
michael@0 | 55 | { 0x2d524fd5, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 56 | |
michael@0 | 57 | // Class ID for our UnicodeToCP850 charset converter |
michael@0 | 58 | // {2D524FD6-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 59 | #define NS_UNICODETOCP850_CID \ |
michael@0 | 60 | { 0x2d524fd6, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 61 | |
michael@0 | 62 | // Class ID for our UnicodeToCP852 charset converter |
michael@0 | 63 | // {2D524FD7-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 64 | #define NS_UNICODETOCP852_CID \ |
michael@0 | 65 | { 0x2d524fd7, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 66 | |
michael@0 | 67 | // Class ID for our UnicodeToCP855 charset converter |
michael@0 | 68 | // {2D524FD8-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 69 | #define NS_UNICODETOCP855_CID \ |
michael@0 | 70 | { 0x2d524fd8, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 71 | |
michael@0 | 72 | // Class ID for our UnicodeToCP857 charset converter |
michael@0 | 73 | // {2D524FD9-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 74 | #define NS_UNICODETOCP857_CID \ |
michael@0 | 75 | { 0x2d524fd9, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 76 | |
michael@0 | 77 | // Class ID for our UnicodeToCP862 charset converter |
michael@0 | 78 | // {2D524FDA-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 79 | #define NS_UNICODETOCP862_CID \ |
michael@0 | 80 | { 0x2d524fda, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 81 | |
michael@0 | 82 | // Class ID for our UnicodeToCP864 charset converter |
michael@0 | 83 | // {2D524FDB-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 84 | #define NS_UNICODETOCP864_CID \ |
michael@0 | 85 | { 0x2d524fdb, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 86 | |
michael@0 | 87 | // Class ID for our CP869ToUnicode charset converter |
michael@0 | 88 | // {2D524FE0-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 89 | #define NS_CP869TOUNICODE_CID \ |
michael@0 | 90 | { 0x2d524fe0, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 91 | |
michael@0 | 92 | // Class ID for our UnicodeToCP869 charset converter |
michael@0 | 93 | // {2D524FE1-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 94 | #define NS_UNICODETOCP869_CID \ |
michael@0 | 95 | { 0x2d524fe1, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 96 | |
michael@0 | 97 | // Class ID for our CP125ToUnicode charset converter |
michael@0 | 98 | // {2D524FE2-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 99 | #define NS_CP1125TOUNICODE_CID \ |
michael@0 | 100 | { 0x2d524fe2, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 101 | |
michael@0 | 102 | // Class ID for our UnicodeToCP1125 charset converter |
michael@0 | 103 | // {2D524FE3-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 104 | #define NS_UNICODETOCP1125_CID \ |
michael@0 | 105 | { 0x2d524fe3, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 106 | |
michael@0 | 107 | // Class ID for our CP11311ToUnicode charset converter |
michael@0 | 108 | // {2D524FE4-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 109 | #define NS_CP1131TOUNICODE_CID \ |
michael@0 | 110 | { 0x2d524fe4, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 111 | |
michael@0 | 112 | // Class ID for our UnicodeToCP1131 charset converter |
michael@0 | 113 | // {2D524FE5-AE74-11d3-ABF7-0004ACEEFA51} |
michael@0 | 114 | #define NS_UNICODETOCP1131_CID \ |
michael@0 | 115 | { 0x2d524fe5, 0xae74, 0x11d3, {0xab, 0xf7, 0x0, 0x4, 0xac, 0xee, 0xfa, 0x51}} |
michael@0 | 116 | |
michael@0 | 117 | #endif /* nsUCvIBMCID_h___ */ |