(root)/
gettext-0.22.4/
libtextstyle/
lib/
iconv_ostream.priv.h
       1  /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
       2  
       3  /* Field layout of superclass.  */
       4  #include "ostream.priv.h"
       5  
       6  /* Field layout of iconv_ostream class.  */
       7  struct iconv_ostream_representation
       8  {
       9    struct ostream_representation base;
      10  #if HAVE_ICONV
      11     
      12    ostream_t destination;
      13     
      14    char *from_encoding;
      15    char *to_encoding;
      16     
      17    iconv_t cd;
      18     
      19    #define BUFSIZE 64
      20    char buf[BUFSIZE];
      21    size_t buflen;
      22  #endif  
      23  };