home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / exml.lha / exml / expat / xmlwf / codepage.c next >
C/C++ Source or Header  |  1999-04-13  |  2KB  |  78 lines

  1. /*
  2. The contents of this file are subject to the Mozilla Public License
  3. Version 1.0 (the "License"); you may not use this file except in
  4. compliance with the License. You may obtain a copy of the License at
  5. http://www.mozilla.org/MPL/
  6.  
  7. Software distributed under the License is distributed on an "AS IS"
  8. basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
  9. License for the specific language governing rights and limitations
  10. under the License.
  11.  
  12. The Original Code is expat.
  13.  
  14. The Initial Developer of the Original Code is James Clark.
  15. Portions created by James Clark are Copyright (C) 1998
  16. James Clark. All Rights Reserved.
  17.  
  18. Contributor(s):
  19. */
  20.  
  21. #include "codepage.h"
  22.  
  23. #ifdef WIN32
  24. #include <windows.h>
  25.  
  26. int codepageMap(int cp, int *map)
  27. {
  28.   int i;
  29.   CPINFO info;
  30.   if (!GetCPInfo(cp, &info) || info.MaxCharSize > 2)
  31.     return 0;
  32.   for (i = 0; i < 256; i++)
  33.     map[i] = -1;
  34.   if (info.MaxCharSize > 1) {
  35.     for (i = 0; i < MAX_LEADBYTES; i++) {
  36.       int j, lim;
  37.       if (info.LeadByte[i] == 0 && info.LeadByte[i + 1] == 0)
  38.         break;
  39.       lim = info.LeadByte[i + 1];
  40.       for (j = info.LeadByte[i]; j < lim; j++)
  41.     map[j] = -2;
  42.     }
  43.   }
  44.   for (i = 0; i < 256; i++) {
  45.    if (map[i] == -1) {
  46.      char c = i;
  47.      unsigned short n;
  48.      if (MultiByteToWideChar(cp, MB_PRECOMPOSED|MB_ERR_INVALID_CHARS,
  49.                      &c, 1, &n, 1) == 1)
  50.        map[i] = n;
  51.    }
  52.   }
  53.   return 1;
  54. }
  55.  
  56. int codepageConvert(int cp, const char *p)
  57. {
  58.   unsigned short c;
  59.   if (MultiByteToWideChar(cp, MB_PRECOMPOSED|MB_ERR_INVALID_CHARS,
  60.                   p, 2, &c, 1) == 1)
  61.     return c;
  62.   return -1;
  63. }
  64.  
  65. #else /* not WIN32 */
  66.  
  67. int codepageMap(int cp, int *map)
  68. {
  69.   return 0;
  70. }
  71.  
  72. int codepageConvert(int cp, const char *p)
  73. {
  74.   return -1;
  75. }
  76.  
  77. #endif /* not WIN32 */
  78.