home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / iconv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-20  |  1.2 KB  |  35 lines

  1. /********************************************************************/
  2. /*                                                                  */
  3. /*  VisualAge for C++ for Windows, Version 3.5                      */
  4. /*    Licensed Material - Property of IBM                           */
  5. /*                                                                  */
  6. /*  5801-ARR and Other Materials                                    */
  7. /*                                                                  */
  8. /*  (c) Copyright IBM Corp 1991, 1996. All rights reserved.         */
  9. /*                                                                  */
  10. /********************************************************************/
  11.  
  12. #ifndef _ICONV_H
  13.   #define _ICONV_H
  14.  
  15.    #ifndef  _LNK_CONV
  16.       #ifdef _M_I386
  17.          #define _LNK_CONV   _Optlink
  18.       #else
  19.          #define _LNK_CONV
  20.       #endif
  21.    #endif
  22.  
  23.   #include <stdlib.h>
  24.  
  25.   #ifndef __ICONVP_H
  26.     typedef void *iconv_t;
  27.   #endif
  28.  
  29.   iconv_t _LNK_CONV iconv_open (const char*, const char*);
  30.   size_t  _LNK_CONV iconv(iconv_t, char**, size_t*, char**, size_t*);
  31.   int     _LNK_CONV iconv_close (iconv_t);
  32.  
  33. #endif /*!_ICONV_H*/
  34.  
  35.