6 * Copyright (C) 2002-2003, Herman Bloggs <hermanator12002@yahoo.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
25 #include <gtkspell/gtkspell.h>
29 #endif /* __cplusplus */
31 void winpidgin_spell_init(void);
33 extern GtkSpell
* (*wpidginspell_new_attach
)(GtkTextView
*, const gchar
*, GError
**);
34 #define gtkspell_new_attach( view, lang, error ) \
35 wpidginspell_new_attach( view, lang, error )
37 extern GtkSpell
* (*wpidginspell_get_from_text_view
)(GtkTextView
*);
38 #define gtkspell_get_from_text_view( view ) \
39 wpidginspell_get_from_text_view( view )
41 extern void (*wpidginspell_detach
)(GtkSpell
*);
42 #define gtkspell_detach( spell ) \
43 wpidginspell_detach( spell )
45 extern gboolean (*wpidginspell_set_language
)(GtkSpell
*, const gchar
*, GError
**);
46 #define gtkspell_set_language( spell, lang, error ) \
47 wpidginspell_set_language( spell, lang, error )
49 extern void (*wpidginspell_recheck_all
)(GtkSpell
*);
50 #define gtkspell_recheck_all( spell ) \
51 wpidginspell_recheck_all( spell )
55 #endif /* __cplusplus */
57 #endif /* _WSPELL_H_ */