comparison mcabber/src/screen.h @ 1590:8d1bcc83ae32

Add support for spellchecking with Enchant (caolan) Patch from the issue tracker: http://bitbucket.org/McKael/mcabber-crew/issue/36/patch-to-spell-checking-using-enchant
author Mikael Berthe <mikael@lilotux.net>
date Sun, 04 Oct 2009 19:33:38 +0200
parents ece4f26bf9ff
children a087125d8fc8
comparison
equal deleted inserted replaced
1589:23c08d4f1d1e 1590:8d1bcc83ae32
12 #else 12 #else
13 # include <ncurses.h> 13 # include <ncurses.h>
14 # include <panel.h> 14 # include <panel.h>
15 #endif 15 #endif
16 16
17 #ifdef WITH_ASPELL 17 #if defined(WITH_ENCHANT) || defined(WITH_ASPELL)
18 void spellcheck_init(void); 18 void spellcheck_init(void);
19 void spellcheck_deinit(void); 19 void spellcheck_deinit(void);
20 //static void spellcheck(char*, char*); 20 //static void spellcheck(char*, char*);
21 #endif 21 #endif
22 22