comparison plugins/tcl/tcl_win32.c @ 12405:57a0c8fc4bbc

[gaim-migrate @ 14712] void prototype fix. This should be correct, but can someone double check that Tcl under win32 still compiles? committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Thu, 08 Dec 2005 20:58:05 +0000
parents 409f7f167c98
children 7ef6a2d0d9da
comparison
equal deleted inserted replaced
12404:7c7cb03e5475 12405:57a0c8fc4bbc
25 25
26 #ifdef HAVE_TK 26 #ifdef HAVE_TK
27 #include <tk.h> 27 #include <tk.h>
28 #endif 28 #endif
29 29
30 typedef Tcl_Interp* (CALLBACK* LPFNTCLCREATEINTERP)(); 30 typedef Tcl_Interp* (CALLBACK* LPFNTCLCREATEINTERP)(void);
31 typedef void (CALLBACK* LPFNTKINIT)(Tcl_Interp*); 31 typedef void (CALLBACK* LPFNTKINIT)(Tcl_Interp*);
32 32
33 LPFNTCLCREATEINTERP wtcl_CreateInterp = NULL; 33 LPFNTCLCREATEINTERP wtcl_CreateInterp = NULL;
34 LPFNTKINIT wtk_Init = NULL; 34 LPFNTKINIT wtk_Init = NULL;
35 35