diff options
Diffstat (limited to 'src/plugins/spell/spell.h')
-rw-r--r-- | src/plugins/spell/spell.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/plugins/spell/spell.h b/src/plugins/spell/spell.h new file mode 100644 index 000000000..8625ea7db --- /dev/null +++ b/src/plugins/spell/spell.h @@ -0,0 +1,52 @@ +/* + * Copyright (C) 2006 Emmanuel Bouthenot <kolter@openics.org> + * Copyright (C) 2006-2019 Sébastien Helleu <flashcode@flashtux.org> + * + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * WeeChat is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with WeeChat. If not, see <https://www.gnu.org/licenses/>. + */ + +#ifndef WEECHAT_PLUGIN_SPELL_H +#define WEECHAT_PLUGIN_SPELL_H + +#ifdef USE_ENCHANT +#include <enchant.h> +#else +#include <aspell.h> +#endif /* USE_ENCHANT */ + +#define weechat_plugin weechat_spell_plugin +#define SPELL_PLUGIN_NAME "spell" + +struct t_spell_code +{ + char *code; + char *name; +}; + +#ifdef USE_ENCHANT +extern EnchantBroker *broker; +#endif /* USE_ENCHANT */ + +extern struct t_weechat_plugin *weechat_spell_plugin; +extern int spell_enabled; +extern struct t_spell_code spell_langs[]; +extern struct t_spell_code spell_countries[]; + +extern char *spell_build_option_name (struct t_gui_buffer *buffer); +extern const char *spell_get_dict_with_buffer_name (const char *name); +extern const char *spell_get_dict (struct t_gui_buffer *buffer); + +#endif /* WEECHAT_PLUGIN_SPELL_H */ |