changeset 4546:a951bb590857

[gaim-migrate @ 4825] Win32 update for msn ft changes.. committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Thu, 06 Feb 2003 22:27:29 +0000
parents 464ec3e2ce43
children 1f19b66c5d84
files src/protocols/msn/Makefile.mingw src/protocols/msn/ft.c src/protocols/msn/msn.c src/protocols/msn/switchboard.c
diffstat 4 files changed, 20 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/protocols/msn/Makefile.mingw	Thu Feb 06 22:10:21 2003 +0000
+++ b/src/protocols/msn/Makefile.mingw	Thu Feb 06 22:27:29 2003 +0000
@@ -68,7 +68,10 @@
 ##  SOURCES, OBJECTS
 ##
 
-C_SRC =		msn.c
+C_SRC =			ft.c \
+			msg.c \
+			msn.c \
+			switchboard.c
 
 
 OBJECTS = $(C_SRC:%.c=%.o)
--- a/src/protocols/msn/ft.c	Thu Feb 06 22:10:21 2003 +0000
+++ b/src/protocols/msn/ft.c	Thu Feb 06 22:27:29 2003 +0000
@@ -22,6 +22,10 @@
  */
 #include "msn.h"
 
+#ifdef _WIN32
+#include "win32dep.h"
+#endif
+
 G_MODULE_IMPORT GSList *connections;
 
 static struct gaim_xfer *
--- a/src/protocols/msn/msn.c	Thu Feb 06 22:10:21 2003 +0000
+++ b/src/protocols/msn/msn.c	Thu Feb 06 22:27:29 2003 +0000
@@ -22,6 +22,10 @@
  */
 #include "msn.h"
 
+#ifdef _WIN32
+#include "win32dep.h"
+#endif
+
 #include "pixmaps/protocols/msn/msn_online.xpm"
 #include "pixmaps/protocols/msn/msn_away.xpm"
 #include "pixmaps/protocols/msn/msn_occ.xpm"
@@ -36,10 +40,8 @@
 static void msn_login_xfr_connect(gpointer, gint, GaimInputCondition);
 
 #if 0
-static struct msn_file_transfer *find_mft_by_cookie(struct gaim_connection *gc,
-													unsigned long cookie);
-static struct msn_file_transfer *find_mft_by_xfer(struct gaim_connection *gc,
-												  struct file_transfer *xfer);
+static struct msn_file_transfer *find_mft_by_cookie(struct gaim_connection *gc,	unsigned long cookie);
+static struct msn_file_transfer *find_mft_by_xfer(struct gaim_connection *gc, struct file_transfer *xfer);
 #endif
 
 static char *msn_normalize(const char *s)
--- a/src/protocols/msn/switchboard.c	Thu Feb 06 22:10:21 2003 +0000
+++ b/src/protocols/msn/switchboard.c	Thu Feb 06 22:27:29 2003 +0000
@@ -22,6 +22,12 @@
  */
 #include "msn.h"
 
+#ifdef _WIN32
+#include "win32dep.h"
+#endif
+
+G_MODULE_IMPORT GSList *connections;
+
 static char *
 msn_parse_format(char *mime)
 {