Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #ifndef nsUCvKOCID_h___ |
michael@0 | 7 | #define nsUCvKOCID_h___ |
michael@0 | 8 | |
michael@0 | 9 | #include "nsISupports.h" |
michael@0 | 10 | |
michael@0 | 11 | // Class ID for our EUCKRToUnicode charset converter |
michael@0 | 12 | // {379C2775-EC77-11d2-8AAC-00600811A836} |
michael@0 | 13 | #define NS_EUCKRTOUNICODE_CID \ |
michael@0 | 14 | { 0x379c2775, 0xec77, 0x11d2, {0x8a, 0xac, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}} |
michael@0 | 15 | |
michael@0 | 16 | // Class ID for our ISO2022KRToUnicode charset converter |
michael@0 | 17 | // {BA61519f-1DFA-11d3-B3BF-00805F8A6670} |
michael@0 | 18 | #define NS_ISO2022KRTOUNICODE_CID \ |
michael@0 | 19 | { 0xba61519f, 0x1dfa, 0x11d3, {0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70}} |
michael@0 | 20 | |
michael@0 | 21 | // Class ID for our UnicodeToEUCKR charset converter |
michael@0 | 22 | // {379C2778-EC77-11d2-8AAC-00600811A836} |
michael@0 | 23 | #define NS_UNICODETOEUCKR_CID \ |
michael@0 | 24 | { 0x379c2778, 0xec77, 0x11d2, {0x8a, 0xac, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}} |
michael@0 | 25 | |
michael@0 | 26 | // Class ID for our UnicodeToISO2022KR charset converter |
michael@0 | 27 | // {BA6151A0-1DFA-11d3-B3BF-00805F8A6670} |
michael@0 | 28 | #define NS_UNICODETOISO2022KR_CID \ |
michael@0 | 29 | { 0xba6151a0, 0x1dfa, 0x11d3, {0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70}} |
michael@0 | 30 | |
michael@0 | 31 | // Class ID for our UnicodeToJohab charset converter |
michael@0 | 32 | // {D9B1F97E-CFA0-80b6-FB92-9972E48E3DCC} |
michael@0 | 33 | #define NS_UNICODETOJOHAB_CID \ |
michael@0 | 34 | { 0xd9b1f97e, 0xcfa0, 0x80b6, {0xfb, 0x92, 0x99, 0x72, 0xe4, 0x8e, 0x3d, 0xcc}} |
michael@0 | 35 | |
michael@0 | 36 | // Class ID for our JohabToUnicode charset converter |
michael@0 | 37 | // {D9B1F97F-CFA0-80b6-FB92-9972E48E3DCC} |
michael@0 | 38 | #define NS_JOHABTOUNICODE_CID \ |
michael@0 | 39 | { 0xd9b1f97f, 0xcfa0, 0x80b6, {0xfb, 0x92, 0x99, 0x72, 0xe4, 0x8e, 0x3d, 0xcc}} |
michael@0 | 40 | |
michael@0 | 41 | #endif /* nsUCvKOCID_h___ */ |