comparison libpurple/conversation.h @ 32704:32eef2c3314a

disapproval of revision '8e7b47f18e014b8e786f6b8e24ecfe6182130ddc'
author Kevin Stange <kevin@simguy.net>
date Sun, 02 Oct 2011 00:05:00 +0000
parents 3e2191125ad7
children 9173ec5a45cf
comparison
equal deleted inserted replaced
32699:3e2191125ad7 32704:32eef2c3314a
51 typedef enum 51 typedef enum
52 { 52 {
53 PURPLE_CONV_TYPE_UNKNOWN = 0, /**< Unknown conversation type. */ 53 PURPLE_CONV_TYPE_UNKNOWN = 0, /**< Unknown conversation type. */
54 PURPLE_CONV_TYPE_IM, /**< Instant Message. */ 54 PURPLE_CONV_TYPE_IM, /**< Instant Message. */
55 PURPLE_CONV_TYPE_CHAT, /**< Chat room. */ 55 PURPLE_CONV_TYPE_CHAT, /**< Chat room. */
56 PURPLE_CONV_TYPE_MISC, /**< A misc. conversation. */
56 PURPLE_CONV_TYPE_ANY /**< Any type of conversation. */ 57 PURPLE_CONV_TYPE_ANY /**< Any type of conversation. */
57 58
58 } PurpleConversationType; 59 } PurpleConversationType;
59 60
60 /** 61 /**
282 283
283 union 284 union
284 { 285 {
285 PurpleConvIm *im; /**< IM-specific data. */ 286 PurpleConvIm *im; /**< IM-specific data. */
286 PurpleConvChat *chat; /**< Chat-specific data. */ 287 PurpleConvChat *chat; /**< Chat-specific data. */
288 void *misc; /**< Misc. data. */
289
287 } u; 290 } u;
288 291
289 PurpleConversationUiOps *ui_ops; /**< UI-specific operations. */ 292 PurpleConversationUiOps *ui_ops; /**< UI-specific operations. */
290 void *ui_data; /**< UI-specific data. */ 293 void *ui_data; /**< UI-specific data. */
291 294