comparison src/win32/wspell.h @ 12497:202ce52b77a9

[gaim-migrate @ 14809] I dislike the use of the extern keyword on functions in header files. It doesn't make a difference, does it? committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 16 Dec 2005 09:02:17 +0000
parents fc464a0abccc
children
comparison
equal deleted inserted replaced
12496:f9d0ab1474ac 12497:202ce52b77a9
22 */ 22 */
23 #ifndef _WSPELL_H_ 23 #ifndef _WSPELL_H_
24 #define _WSPELL_H_ 24 #define _WSPELL_H_
25 #include <gtkspell/gtkspell.h> 25 #include <gtkspell/gtkspell.h>
26 26
27 extern void wgaim_gtkspell_init(void); 27 void wgaim_gtkspell_init(void);
28 28
29 extern GtkSpell* (*wgaim_gtkspell_new_attach)(GtkTextView*, const gchar*, GError**); 29 extern GtkSpell* (*wgaim_gtkspell_new_attach)(GtkTextView*, const gchar*, GError**);
30 #define gtkspell_new_attach( view, lang, error ) \ 30 #define gtkspell_new_attach( view, lang, error ) \
31 wgaim_gtkspell_new_attach( view, lang, error ) 31 wgaim_gtkspell_new_attach( view, lang, error )
32 32