diff options
Diffstat (limited to 'mailnews/intl/nsCommUConvCID.h')
-rw-r--r-- | mailnews/intl/nsCommUConvCID.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mailnews/intl/nsCommUConvCID.h b/mailnews/intl/nsCommUConvCID.h new file mode 100644 index 000000000..4f1686098 --- /dev/null +++ b/mailnews/intl/nsCommUConvCID.h @@ -0,0 +1,26 @@ +/* -*- 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/. */ + +// Class ID for our UTF7ToUnicode charset converter +// {77CFAAF1-1CF4-11d3-8AAF-00600811A836} +#define NS_UTF7TOUNICODE_CID \ + { 0x77cfaaf1, 0x1cf4, 0x11d3, {0x8a, 0xaf, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}} + +// Class ID for our MUTF7ToUnicode charset converter +// {B57F97C1-0D70-11d3-8AAE-00600811A836} +#define NS_MUTF7TOUNICODE_CID \ + { 0xb57f97c1, 0xd70, 0x11d3, {0x8a, 0xae, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}} + +// Class ID for our UnicodeToUTF7 charset converter +// {77CFAAF2-1CF4-11d3-8AAF-00600811A836} +#define NS_UNICODETOUTF7_CID \ + { 0x77cfaaf2, 0x1cf4, 0x11d3, {0x8a, 0xaf, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}} + +// Class ID for our UnicodeToMUTF7 charset converter +// {B57F97C2-0D70-11d3-8AAE-00600811A836} +#define NS_UNICODETOMUTF7_CID \ + { 0xb57f97c2, 0xd70, 0x11d3, {0x8a, 0xae, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}} + + |