michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef nsUCvKOCID_h___ michael@0: #define nsUCvKOCID_h___ michael@0: michael@0: #include "nsISupports.h" michael@0: michael@0: // Class ID for our EUCKRToUnicode charset converter michael@0: // {379C2775-EC77-11d2-8AAC-00600811A836} michael@0: #define NS_EUCKRTOUNICODE_CID \ michael@0: { 0x379c2775, 0xec77, 0x11d2, {0x8a, 0xac, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}} michael@0: michael@0: // Class ID for our ISO2022KRToUnicode charset converter michael@0: // {BA61519f-1DFA-11d3-B3BF-00805F8A6670} michael@0: #define NS_ISO2022KRTOUNICODE_CID \ michael@0: { 0xba61519f, 0x1dfa, 0x11d3, {0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70}} michael@0: michael@0: // Class ID for our UnicodeToEUCKR charset converter michael@0: // {379C2778-EC77-11d2-8AAC-00600811A836} michael@0: #define NS_UNICODETOEUCKR_CID \ michael@0: { 0x379c2778, 0xec77, 0x11d2, {0x8a, 0xac, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}} michael@0: michael@0: // Class ID for our UnicodeToISO2022KR charset converter michael@0: // {BA6151A0-1DFA-11d3-B3BF-00805F8A6670} michael@0: #define NS_UNICODETOISO2022KR_CID \ michael@0: { 0xba6151a0, 0x1dfa, 0x11d3, {0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70}} michael@0: michael@0: // Class ID for our UnicodeToJohab charset converter michael@0: // {D9B1F97E-CFA0-80b6-FB92-9972E48E3DCC} michael@0: #define NS_UNICODETOJOHAB_CID \ michael@0: { 0xd9b1f97e, 0xcfa0, 0x80b6, {0xfb, 0x92, 0x99, 0x72, 0xe4, 0x8e, 0x3d, 0xcc}} michael@0: michael@0: // Class ID for our JohabToUnicode charset converter michael@0: // {D9B1F97F-CFA0-80b6-FB92-9972E48E3DCC} michael@0: #define NS_JOHABTOUNICODE_CID \ michael@0: { 0xd9b1f97f, 0xcfa0, 0x80b6, {0xfb, 0x92, 0x99, 0x72, 0xe4, 0x8e, 0x3d, 0xcc}} michael@0: michael@0: #endif /* nsUCvKOCID_h___ */