| 88 notifier.deleteFileHandlerProc = tcl_delete_file_handler; |
87 notifier.deleteFileHandlerProc = tcl_delete_file_handler; |
| 89 notifier.setTimerProc = tcl_set_timer; |
88 notifier.setTimerProc = tcl_set_timer; |
| 90 notifier.waitForEventProc = tcl_wait_for_event; |
89 notifier.waitForEventProc = tcl_wait_for_event; |
| 91 |
90 |
| 92 Tcl_SetNotifier(¬ifier); |
91 Tcl_SetNotifier(¬ifier); |
| |
92 Tcl_SetServiceMode(TCL_SERVICE_ALL); |
| 93 |
93 |
| 94 tcl_timer_pending = FALSE; |
94 tcl_timer_pending = FALSE; |
| 95 tcl_file_handlers = g_hash_table_new(g_direct_hash, g_direct_equal); |
95 tcl_file_handlers = g_hash_table_new(g_direct_hash, g_direct_equal); |
| 96 } |
96 } |
| 97 |
97 |