src/conversation.h

changeset 4378
3bef342997ef
parent 4359
cf899ee07d1d
child 4465
43184ae252ed
equal deleted inserted replaced
4377:5b7404f03845 4378:3bef342997ef
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

mercurial