nsUCvCnCID.h 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #ifndef nsUCvCnCID_h___
  6. #define nsUCvCnCID_h___
  7. #include "nsISupports.h"
  8. // Class ID for our GBKToUnicode charset converter
  9. // {BA61519E-1DFA-11d3-B3BF-00805F8A6670}
  10. #define NS_GBKTOUNICODE_CID \
  11. { 0xba61519e, 0x1dfa, 0x11d3, {0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70}}
  12. // Class ID for our UnicodeToGBK charset converter
  13. // {BA61519B-1DFA-11d3-B3BF-00805F8A6670}
  14. #define NS_UNICODETOGBK_CID \
  15. { 0xba61519b, 0x1dfa, 0x11d3, {0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70}}
  16. // Class ID for our UnicodeToGB18030 charset converter
  17. // {A59DA932-4091-11d5-A145-005004832142}
  18. #define NS_UNICODETOGB18030_CID \
  19. { 0xa59da932, 0x4091, 0x11d5, { 0xa1, 0x45, 0x0, 0x50, 0x4, 0x83, 0x21, 0x42 } }
  20. // Class ID for our GBKToUnicode charset converter
  21. // {A59DA935-4091-11d5-A145-005004832142}
  22. #define NS_GB18030TOUNICODE_CID \
  23. { 0xa59da935, 0x4091, 0x11d5, { 0xa1, 0x45, 0x0, 0x50, 0x4, 0x83, 0x21, 0x42 } }
  24. #endif /* nsUCvCnCID_h___ */