| 33 #include "core.h" |
33 #include "core.h" |
| 34 |
34 |
| 35 static GList *tcl_callbacks; |
35 static GList *tcl_callbacks; |
| 36 |
36 |
| 37 static void *tcl_signal_callback(va_list args, struct tcl_signal_handler *handler); |
37 static void *tcl_signal_callback(va_list args, struct tcl_signal_handler *handler); |
| 38 static Tcl_Obj *new_cb_namespace (); |
38 static Tcl_Obj *new_cb_namespace (void); |
| 39 |
39 |
| 40 void tcl_signal_init() |
40 void tcl_signal_init() |
| 41 { |
41 { |
| 42 tcl_callbacks = NULL; |
42 tcl_callbacks = NULL; |
| 43 } |
43 } |