comparison finch/finch.c @ 16677:30829e806dae

And finch is up to date
author Gary Kramlich <grim@reaperworld.com>
date Mon, 30 Apr 2007 00:17:43 +0000
parents ac0d07c7fd90
children f8f78fa7e774
comparison
equal deleted inserted replaced
16676:07cf49a0f404 16677:30829e806dae
57 static PurpleCoreUiOps core_ops = 57 static PurpleCoreUiOps core_ops =
58 { 58 {
59 finch_prefs_init, 59 finch_prefs_init,
60 debug_init, 60 debug_init,
61 gnt_ui_init, 61 gnt_ui_init,
62 gnt_ui_uninit 62 gnt_ui_uninit,
63
64 /* padding */
65 NULL,
66 NULL,
67 NULL,
68 NULL
63 }; 69 };
64 70
65 static PurpleCoreUiOps * 71 static PurpleCoreUiOps *
66 gnt_core_get_ui_ops() 72 gnt_core_get_ui_ops()
67 { 73 {
147 { 153 {
148 g_timeout_add, 154 g_timeout_add,
149 g_source_remove, 155 g_source_remove,
150 gnt_input_add, 156 gnt_input_add,
151 g_source_remove, 157 g_source_remove,
152 NULL /* input_get_error */ 158 NULL, /* input_get_error */
159
160 /* padding */
161 NULL,
162 NULL,
163 NULL,
164 NULL
153 }; 165 };
154 166
155 static PurpleEventLoopUiOps * 167 static PurpleEventLoopUiOps *
156 gnt_eventloop_get_ui_ops(void) 168 gnt_eventloop_get_ui_ops(void)
157 { 169 {