1 #ifndef MC__EDIT_ASPELL_H 2 #define MC__EDIT_ASPELL_H 3 4 #include "lib/global.h" /* include <glib.h> */ 5 6 /*** typedefs(not structures) and defined constants **********************************************/ 7 8 /*** enums ***************************************************************************************/ 9 10 /*** structures declarations (and typedefs of structures)*****************************************/ 11 12 /*** global variables defined in .c file *********************************************************/ 13 14 /*** declarations of public functions ************************************************************/ 15 16 void aspell_init (void); 17 void aspell_clean (void); 18 19 int edit_suggest_current_word (WEdit * edit); 20 void edit_spellcheck_file (WEdit * edit); 21 void edit_set_spell_lang (void); 22 23 const char *spell_dialog_lang_list_show (const GPtrArray * languages); 24 25 /*** inline functions ****************************************************************************/ 26 27 #endif /* MC__EDIT_ASPELL_H */