comparison pidgin/gtkeventloop.c @ 18008:f22986db6e70

Wire everything up and document it.
author Richard Laager <rlaager@wiktel.com>
date Sun, 20 May 2007 13:56:28 +0000
parents f2d8658b3a86
children 58e82c3b697e
comparison
equal deleted inserted replaced
18007:a8b4444f2515 18008:f22986db6e70
114 } 114 }
115 115
116 static PurpleEventLoopUiOps eventloop_ops = 116 static PurpleEventLoopUiOps eventloop_ops =
117 { 117 {
118 g_timeout_add, 118 g_timeout_add,
119 NULL,
120 g_source_remove, 119 g_source_remove,
121 pidgin_input_add, 120 pidgin_input_add,
122 g_source_remove, 121 g_source_remove,
123 NULL, /* input_get_error */ 122 NULL, /* input_get_error */
123 #if GLIB_VERSION_CHECK(2,14,0)
124 g_timeout_add_seconds,
125 #else
124 NULL, 126 NULL,
127 #endif
125 NULL, 128 NULL,
126 NULL, 129 NULL,
127 NULL 130 NULL
128 }; 131 };
129 132