utils.cpp.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:2k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. /*  Localization utility functions
  2.  *  Copyright (C) 2006   Written by VCL
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  */
  18. #ifdef WIN32
  19. #define WIN32_LEAN_AND_MEAN
  20. #include <windows.h>
  21. #include <stdio.h>
  22. #else
  23. #include <langinfo.h>
  24. #endif
  25. #include "utils.h"
  26. /**
  27.  * Determine the current locale's character encoding, and canonicalize it
  28.  * into one of the canonical names listed in config.charset.
  29.  * The result must not be freed; it is statically allocated.
  30.  * If the canonical name cannot be determined, the result is a non-canonical
  31.  * name.
  32.  *
  33.  * Code copied from libcharset, part of glib.
  34.  */
  35. const char *
  36. get_locale_charset() {
  37. const char *codeset;
  38. #ifdef WIN32
  39. static char buf[2 + 10 + 1];
  40. /* Win32 has a function returning the locale's codepage as a number. */
  41. sprintf(buf, "CP%u", GetACP());
  42. codeset = buf;
  43. #else
  44. /* Most systems support nl_langinfo(CODESET) nowadays.  */
  45. codeset = nl_langinfo(CODESET);
  46. #endif
  47. return codeset;
  48. }