comparison src/connection.h @ 9221:8054855f2bb9

[gaim-migrate @ 10017] a yahoo japan patch from wing: 1. Recognize ISO2022 in Subject header 2. Go to mail.yahoo.co.jp if account is marked as "Yahoo Japan" 3. Make profiles.yahoo.co.jp a #define and use it in yahoo_profile.c I poked at it myself some too, to make it give the right profile url in the get info box for yahoo japan. I also added a new macro to connection.h to check if a connection is valid. I'm not very good at macros, however, and used its argument twice. Someone should fix that :) committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Sun, 06 Jun 2004 18:45:06 +0000
parents 812e7aa7eafa
children e4a27c9aec4c
comparison
equal deleted inserted replaced
9220:f0488214826f 9221:8054855f2bb9
267 * 267 *
268 * @return A list of connecting connections. 268 * @return A list of connecting connections.
269 */ 269 */
270 GList *gaim_connections_get_connecting(void); 270 GList *gaim_connections_get_connecting(void);
271 271
272 /**
273 * Checks if gc is still a valid pointer to a gc.
274 *
275 * @return @c TRUE if gc is valid.
276 */
277 #define GAIM_CONNECTION_IS_VALID(gc) (g_list_find(gaim_connections_get_all(), (gc)) || g_list_find(gaim_connections_get_connecting(), (gc)))
278
272 /*@}*/ 279 /*@}*/
273 280
274 /**************************************************************************/ 281 /**************************************************************************/
275 /** @name UI Registration Functions */ 282 /** @name UI Registration Functions */
276 /**************************************************************************/ 283 /**************************************************************************/