tdsiconv.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:2k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: tdsiconv.h,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/21 14:47:19  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* Generated from tds_configs.h.in on Sun Aug 11 12:35:14 EDT 2002 */
  10. /* FreeTDS - Library of routines accessing Sybase and Microsoft databases
  11.  * Copyright (C) 2002  Brian Bruns
  12.  *
  13.  * This library is free software; you can redistribute it and/or
  14.  * modify it under the terms of the GNU Library General Public
  15.  * License as published by the Free Software Foundation; either
  16.  * version 2 of the License, or (at your option) any later version.
  17.  *
  18.  * This library is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  21.  * Library General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU Library General Public
  24.  * License along with this library; if not, write to the
  25.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  26.  * Boston, MA 02111-1307, USA.
  27.  */
  28. #ifndef _tds_iconv_h_
  29. #define _tds_iconv_h_
  30. static char rcsid_tds_iconv_h[]=
  31.  "$Id: tdsiconv.h,v 1000.1 2004/04/21 14:47:19 gouriano Exp $";
  32. static void *no_unused_tds_iconv_h_warn[]={rcsid_tds_iconv_h, no_unused_tds_iconv_h_warn};
  33. #if HAVE_ICONV
  34. #include <iconv.h>
  35. #endif
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. typedef struct tdsiconvinfo {
  40. int use_iconv;
  41. #if HAVE_ICONV
  42.      iconv_t cdto;
  43.      iconv_t cdfrom;
  44. #endif
  45. } TDSICONVINFO;
  46. #ifdef __cplusplus
  47. }
  48. #endif 
  49. #endif /* _tds_iconv_h_ */