diff src/protocols/msn/switchboard.h @ 10602:f52ab405f1ab

[gaim-migrate @ 12032] This is patch 1112281 from Felipe Contreras, it prevents file transfers being cancelled when closing a conversation window with the sender/recipient. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Wed, 16 Feb 2005 20:14:12 +0000
parents bcfea6c3d5c9
children fe919915fceb
line wrap: on
line diff
--- a/src/protocols/msn/switchboard.h	Wed Feb 16 03:57:23 2005 +0000
+++ b/src/protocols/msn/switchboard.h	Wed Feb 16 20:14:12 2005 +0000
@@ -50,6 +50,16 @@
 } MsnSBErrorType;
 
 /**
+ * A switchboard flag.
+ */
+typedef enum
+{
+	MSN_SB_FLAG_IM = 0x01, /**< This switchboard is used for instant messaging. */
+	MSN_SB_FLAG_FT = 0x02, /**< This switchboard is used for file transfer. */
+
+} MsnSBFlag;
+
+/**
  * A switchboard.
  *
  * A place where a bunch of users send messages to the rest of the users.
@@ -61,6 +71,7 @@
 	MsnCmdProc *cmdproc;
 	char *im_user;
 
+	MsnSBFlag flag;
 	char *auth_key;
 	char *session_id;