comparison src/connection.h @ 6485:70d5122bc3ff

[gaim-migrate @ 6999] Removed the old event system and replaced it with a much better signal system. There will most likely be some bugs in this, but it seems to be working for now. Plugins can now generate their own signals, and other plugins can find those plugins and connect to them. This could give plugins a form of IPC. It's also useful for other things. It's rather flexible, except for the damn marshalling, but there's no way around that that I or the glib people can see. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 18 Aug 2003 01:03:43 +0000
parents ff4551719cc7
children e5e8d21bd4d8
comparison
equal deleted inserted replaced
6484:5ced8e111473 6485:70d5122bc3ff
231 * 231 *
232 * @return A list of connecting connections. 232 * @return A list of connecting connections.
233 */ 233 */
234 GList *gaim_connections_get_connecting(void); 234 GList *gaim_connections_get_connecting(void);
235 235
236 /**
237 * Initializes the connections subsystem.
238 */
239 void gaim_connections_init(void);
240
241 /**
242 * Uninitializes the connections subsystem.
243 */
244 void gaim_connections_uninit(void);
245
246 /**
247 * Returns the handle to the connections subsystem.
248 *
249 * @return The connections subsystem handle.
250 */
251 void *gaim_connections_get_handle(void);
252
236 /*@}*/ 253 /*@}*/
237 254
238 /**************************************************************************/ 255 /**************************************************************************/
239 /** @name UI Operations API */ 256 /** @name UI Operations API */
240 /**************************************************************************/ 257 /**************************************************************************/