iconv.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:4k
源码类别:

OpenGL

开发平台:

Visual C++

  1. /* Copyright (C) 1999-2001 Free Software Foundation, Inc.
  2.    This file is part of the GNU LIBICONV Library.
  3.    The GNU LIBICONV Library is free software; you can redistribute it
  4.    and/or modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either version 2
  6.    of the License, or (at your option) any later version.
  7.    The GNU LIBICONV Library is distributed in the hope that it will be
  8.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  10.    Library General Public License for more details.
  11.    You should have received a copy of the GNU Library General Public
  12.    License along with the GNU LIBICONV Library; see the file COPYING.LIB.
  13.    If not, write to the Free Software Foundation, Inc., 59 Temple Place -
  14.    Suite 330, Boston, MA 02111-1307, USA.  */
  15. /* When installed, this file is called "iconv.h". */
  16. #ifndef _LIBICONV_H
  17. #define _LIBICONV_H
  18. #define _LIBICONV_VERSION 0x0107    /* version number: (major<<8) + minor */
  19. #ifdef BUILDING_LIBICONV
  20. #define LIBICONV_DLL_EXPORTED __declspec(dllexport)
  21. #else
  22. /* #define LIBICONV_DLL_EXPORTED __declspec(dllimport) */
  23. #define LIBICONV_DLL_EXPORTED
  24. #endif
  25. extern LIBICONV_DLL_EXPORTED int _libiconv_version;       /* Likewise */
  26. /* We would like to #include any system header file which could define
  27.    iconv_t, 1. in order to eliminate the risk that the user gets compilation
  28.    errors because some other system header file includes /usr/include/iconv.h
  29.    which defines iconv_t or declares iconv after this file, 2. when compiling
  30.    for LIBICONV_PLUG, we need the proper iconv_t type in order to produce
  31.    binary compatible code.
  32.    But gcc's #include_next is not portable. Thus, once libiconv's iconv.h
  33.    has been installed in /usr/local/include, there is no way any more to
  34.    include the original /usr/include/iconv.h. We simply have to get away
  35.    without it.
  36.    Ad 1. The risk that a system header file does
  37.    #include "iconv.h"  or  #include_next "iconv.h"
  38.    is small. They all do #include <iconv.h>.
  39.    Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It
  40.    has to be a scalar type because (iconv_t)(-1) is a possible return value
  41.    from iconv_open().) */
  42. /* Define iconv_t ourselves. */
  43. #undef iconv_t
  44. #define iconv_t libiconv_t
  45. typedef void* iconv_t;
  46. /* Get size_t declaration. */
  47. #include <stddef.h>
  48. /* Get errno declaration and values. */
  49. #include <errno.h>
  50. /* Some systems, like SunOS 4, don't have EILSEQ. On these systems, define
  51.    EILSEQ ourselves, but don't define it as EINVAL, because iconv() callers
  52.    want to distinguish EINVAL and EILSEQ. */
  53. #ifndef EILSEQ
  54. #define EILSEQ ENOENT
  55. #endif
  56. #ifdef __cplusplus
  57. extern "C" {
  58. #endif
  59. /* Allocates descriptor for code conversion from encoding `fromcode' to
  60.    encoding `tocode'. */
  61. #ifndef LIBICONV_PLUG
  62. #define iconv_open libiconv_open
  63. #endif
  64. extern LIBICONV_DLL_EXPORTED iconv_t iconv_open (const char* tocode, const char* fromcode);
  65. /* Converts, using conversion descriptor `cd', at most `*inbytesleft' bytes
  66.    starting at `*inbuf', writing at most `*outbytesleft' bytes starting at
  67.    `*outbuf'.
  68.    Decrements `*inbytesleft' and increments `*inbuf' by the same amount.
  69.    Decrements `*outbytesleft' and increments `*outbuf' by the same amount. */
  70. #ifndef LIBICONV_PLUG
  71. #define iconv libiconv
  72. #endif
  73. extern LIBICONV_DLL_EXPORTED size_t iconv (iconv_t cd, const char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);
  74. /* Frees resources allocated for conversion descriptor `cd'. */
  75. #ifndef LIBICONV_PLUG
  76. #define iconv_close libiconv_close
  77. #endif
  78. extern LIBICONV_DLL_EXPORTED int iconv_close (iconv_t cd);
  79. #ifndef LIBICONV_PLUG
  80. /* Nonstandard extensions. */
  81. /* Control of attributes. */
  82. #define iconvctl libiconvctl
  83. extern LIBICONV_DLL_EXPORTED int iconvctl (iconv_t cd, int request, void* argument);
  84. /* Requests for iconvctl. */
  85. #define ICONV_TRIVIALP            0  /* int *argument */
  86. #define ICONV_GET_TRANSLITERATE   1  /* int *argument */
  87. #define ICONV_SET_TRANSLITERATE   2  /* const int *argument */
  88. #endif
  89. #ifdef __cplusplus
  90. }
  91. #endif
  92. #endif /* _LIBICONV_H */