diff 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
line wrap: on
line diff
--- a/src/conversation.h	Tue Jan 21 05:40:14 2003 +0000
+++ b/src/conversation.h	Tue Jan 21 06:16:42 2003 +0000
@@ -44,7 +44,8 @@
 {
 	GAIM_CONV_UNKNOWN = 0, /**< Unknown conversation type. */
 	GAIM_CONV_IM,          /**< Instant Message.           */
-	GAIM_CONV_CHAT         /**< Chat room.                 */
+	GAIM_CONV_CHAT,        /**< Chat room.                 */
+	GAIM_CONV_MISC         /**< A misc. conversation.      */
 };
 
 /**
@@ -77,8 +78,9 @@
 	 * XXX These need to go when we implement a more generic core/UI event
 	 * system.
 	 */
-	GAIM_CONV_ACCOUNT_ONLINE, /**< One of the user's accounts went online.  */
-	GAIM_CONV_ACCOUNT_OFFLINE /**< One of the user's accounts went offline. */
+	GAIM_CONV_ACCOUNT_ONLINE,  /**< One of the user's accounts went online.  */
+	GAIM_CONV_ACCOUNT_OFFLINE, /**< One of the user's accounts went offline. */
+	GAIM_CONV_UPDATE_AWAY      /**< The other user went away.                */
 };
 
 /* Yeah, this has to be included here. Ugh. */
@@ -220,6 +222,7 @@
 	{
 		struct gaim_im   *im;   /**< IM-specific data.                  */
 		struct gaim_chat *chat; /**< Chat-specific data.                */
+		void *misc;             /**< Misc. data.                        */
 
 	} u;
 };