Changeset 153:5284692205bf for charset.h

Show
Ignore:
Timestamp:
1998-09-13 08:26:52 (10 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

This patch adds on-demand loading of character set tables,
changes the default location of $SHAREDIR, and fixes some
compilation problems occuring on machines without PGP
installed.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • charset.h

    r148 r153  
    2828} CHARSET; 
    2929 
     30#define CHARSET_MAGIC "Mutt Character Set Definition 1.0\n" 
     31 
     32#ifndef _GEN_CHARSETS 
     33 
    3034CHARSET *mutt_get_charset(const char *); 
    31 int mutt_display_char(int, CHARSET *, CHARSET *); 
    32 int mutt_display_string(char *, CHARSET *, CHARSET *); 
     35UNICODE_MAP *mutt_get_translation(const char *, const char *); 
     36int mutt_display_char(int, UNICODE_MAP *); 
     37int mutt_display_string(char *, UNICODE_MAP *); 
     38 
     39#endif 
    3340 
    3441#endif /* _CHARSET_H */