comparison src/conversation.h @ 4378:194507c83612

[gaim-migrate @ 4644] - Removed some debug_printf statements. - Added GAIM_CONV_UPDATE_AWAY. - Couple other things I'll be making use of later. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 21 Jan 2003 06:16:42 +0000
parents 5fb47ec9bfe4
children 6e37eb000b7a
comparison
equal deleted inserted replaced
4377:0ffdb9b6a5e9 4378:194507c83612
42 */ 42 */
43 enum _GaimConversationType 43 enum _GaimConversationType
44 { 44 {
45 GAIM_CONV_UNKNOWN = 0, /**< Unknown conversation type. */ 45 GAIM_CONV_UNKNOWN = 0, /**< Unknown conversation type. */
46 GAIM_CONV_IM, /**< Instant Message. */ 46 GAIM_CONV_IM, /**< Instant Message. */
47 GAIM_CONV_CHAT /**< Chat room. */ 47 GAIM_CONV_CHAT, /**< Chat room. */
48 GAIM_CONV_MISC /**< A misc. conversation. */
48 }; 49 };
49 50
50 /** 51 /**
51 * Unseen text states. 52 * Unseen text states.
52 */ 53 */
75 76
76 /* 77 /*
77 * XXX These need to go when we implement a more generic core/UI event 78 * XXX These need to go when we implement a more generic core/UI event
78 * system. 79 * system.
79 */ 80 */
80 GAIM_CONV_ACCOUNT_ONLINE, /**< One of the user's accounts went online. */ 81 GAIM_CONV_ACCOUNT_ONLINE, /**< One of the user's accounts went online. */
81 GAIM_CONV_ACCOUNT_OFFLINE /**< One of the user's accounts went offline. */ 82 GAIM_CONV_ACCOUNT_OFFLINE, /**< One of the user's accounts went offline. */
83 GAIM_CONV_UPDATE_AWAY /**< The other user went away. */
82 }; 84 };
83 85
84 /* Yeah, this has to be included here. Ugh. */ 86 /* Yeah, this has to be included here. Ugh. */
85 #include "gaim.h" 87 #include "gaim.h"
86 88
218 220
219 union 221 union
220 { 222 {
221 struct gaim_im *im; /**< IM-specific data. */ 223 struct gaim_im *im; /**< IM-specific data. */
222 struct gaim_chat *chat; /**< Chat-specific data. */ 224 struct gaim_chat *chat; /**< Chat-specific data. */
225 void *misc; /**< Misc. data. */
223 226
224 } u; 227 } u;
225 }; 228 };
226 229
227 230