iconv.h.svn-base
上传用户:szjkjd
上传日期:2022-06-27
资源大小:8968k
文件大小:5k
源码类别:

浏览器

开发平台:

Visual C++

  1. /* Copyright (C) 1999-2003 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 0x0109    /* version number: (major<<8) + minor */
  19. extern int _libiconv_version;       /* Likewise */
  20. /* We would like to #include any system header file which could define
  21.    iconv_t, 1. in order to eliminate the risk that the user gets compilation
  22.    errors because some other system header file includes /usr/include/iconv.h
  23.    which defines iconv_t or declares iconv after this file, 2. when compiling
  24.    for LIBICONV_PLUG, we need the proper iconv_t type in order to produce
  25.    binary compatible code.
  26.    But gcc's #include_next is not portable. Thus, once libiconv's iconv.h
  27.    has been installed in /usr/local/include, there is no way any more to
  28.    include the original /usr/include/iconv.h. We simply have to get away
  29.    without it.
  30.    Ad 1. The risk that a system header file does
  31.    #include "iconv.h"  or  #include_next "iconv.h"
  32.    is small. They all do #include <iconv.h>.
  33.    Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It
  34.    has to be a scalar type because (iconv_t)(-1) is a possible return value
  35.    from iconv_open().) */
  36. /* Define iconv_t ourselves. */
  37. #undef iconv_t
  38. #define iconv_t libiconv_t
  39. typedef void* iconv_t;
  40. /* Get size_t declaration. */
  41. #include <stddef.h>
  42. /* Get errno declaration and values. */
  43. #include <errno.h>
  44. /* Some systems, like SunOS 4, don't have EILSEQ. Some systems, like BSD/OS,
  45.    have EILSEQ in a different header.  On these systems, define EILSEQ
  46.    ourselves. */
  47. #ifndef EILSEQ
  48. /* Igor: called upon EILSEQ from glibc, since autogeneration of this header
  49. on Windows didn't do the job. */
  50. /* #define EILSEQ @EILSEQ@ */
  51. #define EILSEQ 84
  52. #endif
  53. #ifdef __cplusplus
  54. extern "C" {
  55. #endif
  56. /* Allocates descriptor for code conversion from encoding `fromcode' to
  57.    encoding `tocode'. */
  58. #ifndef LIBICONV_PLUG
  59. #define iconv_open libiconv_open
  60. #endif
  61. extern iconv_t iconv_open (const char* tocode, const char* fromcode);
  62. /* Converts, using conversion descriptor `cd', at most `*inbytesleft' bytes
  63.    starting at `*inbuf', writing at most `*outbytesleft' bytes starting at
  64.    `*outbuf'.
  65.    Decrements `*inbytesleft' and increments `*inbuf' by the same amount.
  66.    Decrements `*outbytesleft' and increments `*outbuf' by the same amount. */
  67. #ifndef LIBICONV_PLUG
  68. #define iconv libiconv
  69. #endif
  70. extern size_t iconv (iconv_t cd, const char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);
  71. /* Frees resources allocated for conversion descriptor `cd'. */
  72. #ifndef LIBICONV_PLUG
  73. #define iconv_close libiconv_close
  74. #endif
  75. extern int iconv_close (iconv_t cd);
  76. #ifndef LIBICONV_PLUG
  77. /* Nonstandard extensions. */
  78. /* Control of attributes. */
  79. #define iconvctl libiconvctl
  80. extern int iconvctl (iconv_t cd, int request, void* argument);
  81. /* Requests for iconvctl. */
  82. #define ICONV_TRIVIALP            0  /* int *argument */
  83. #define ICONV_GET_TRANSLITERATE   1  /* int *argument */
  84. #define ICONV_SET_TRANSLITERATE   2  /* const int *argument */
  85. #define ICONV_GET_DISCARD_ILSEQ   3  /* int *argument */
  86. #define ICONV_SET_DISCARD_ILSEQ   4  /* const int *argument */
  87. /* Listing of locale independent encodings. */
  88. #define iconvlist libiconvlist
  89. extern void iconvlist (int (*do_one) (unsigned int namescount,
  90.                                       const char * const * names,
  91.                                       void* data),
  92.                        void* data);
  93. /* Support for relocatable packages.  */
  94. /* Sets the original and the current installation prefix of the package.
  95.    Relocation simply replaces a pathname starting with the original prefix
  96.    by the corresponding pathname with the current prefix instead.  Both
  97.    prefixes should be directory names without trailing slash (i.e. use ""
  98.    instead of "/").  */
  99. extern void libiconv_set_relocation_prefix (const char *orig_prefix,
  100.     const char *curr_prefix);
  101. #endif
  102. #ifdef __cplusplus
  103. }
  104. #endif
  105. #endif /* _LIBICONV_H */