diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /intl/uconv/ucvcn/nsUCvCnCID.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'intl/uconv/ucvcn/nsUCvCnCID.h')
-rw-r--r-- | intl/uconv/ucvcn/nsUCvCnCID.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/intl/uconv/ucvcn/nsUCvCnCID.h b/intl/uconv/ucvcn/nsUCvCnCID.h new file mode 100644 index 000000000..9feaca4d0 --- /dev/null +++ b/intl/uconv/ucvcn/nsUCvCnCID.h @@ -0,0 +1,31 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef nsUCvCnCID_h___ +#define nsUCvCnCID_h___ + +#include "nsISupports.h" + +// Class ID for our GBKToUnicode charset converter +// {BA61519E-1DFA-11d3-B3BF-00805F8A6670} +#define NS_GBKTOUNICODE_CID \ + { 0xba61519e, 0x1dfa, 0x11d3, {0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70}} + +// Class ID for our UnicodeToGBK charset converter +// {BA61519B-1DFA-11d3-B3BF-00805F8A6670} +#define NS_UNICODETOGBK_CID \ + { 0xba61519b, 0x1dfa, 0x11d3, {0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70}} + +// Class ID for our UnicodeToGB18030 charset converter +// {A59DA932-4091-11d5-A145-005004832142} +#define NS_UNICODETOGB18030_CID \ + { 0xa59da932, 0x4091, 0x11d5, { 0xa1, 0x45, 0x0, 0x50, 0x4, 0x83, 0x21, 0x42 } } + +// Class ID for our GBKToUnicode charset converter +// {A59DA935-4091-11d5-A145-005004832142} +#define NS_GB18030TOUNICODE_CID \ + { 0xa59da935, 0x4091, 0x11d5, { 0xa1, 0x45, 0x0, 0x50, 0x4, 0x83, 0x21, 0x42 } } + +#endif /* nsUCvCnCID_h___ */ |