diff src/perl.c @ 1030:38452403563b

[gaim-migrate @ 1040] updating the buddy list to work better with multiple connections. there are still a bunch of things fucked up with this but i wanted more people to start working on it than just me, especially since i won't be here this weekend. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 27 Oct 2000 07:53:32 +0000
parents 82c5865f7cfe
children f168625b63fe
line wrap: on
line diff
--- a/src/perl.c	Thu Oct 26 18:05:29 2000 +0000
+++ b/src/perl.c	Fri Oct 27 07:53:32 2000 +0000
@@ -335,6 +335,7 @@
 
 XS (XS_AIM_buddy_list)
 {
+	/* FIXME
 	struct buddy *buddy;
 	struct group *g;
 	GSList *list = groups;
@@ -354,10 +355,12 @@
 		list = g_slist_next(list);
 	}
 	XSRETURN(i);
+	*/
 }
 
 XS (XS_AIM_online_list)
 {
+	/* FIXME
 	struct buddy *b;
 	struct group *g;
 	GSList *list = groups;
@@ -377,10 +380,12 @@
 		list = g_slist_next(list);
 	}
 	XSRETURN(i);
+	*/
 }
 
 XS (XS_AIM_deny_list)
 {
+	/* FIXME, yet again. perl is so fucked
 	char *name;
 	GList *list = deny;
 	int i = 0;
@@ -393,6 +398,7 @@
 		list = list->next;
 	}
 	XSRETURN(i);
+	*/
 }
 
 XS (XS_AIM_command)
@@ -437,6 +443,7 @@
 
 XS (XS_AIM_user_info)
 {
+	/* FIXME
 	int junk;
 	struct buddy *buddy;
 	char *nick;
@@ -457,6 +464,7 @@
 	XST_mIV(5, buddy->uc);
 	XST_mIV(6, buddy->caps);
 	XSRETURN(7);
+	*/
 }
 
 XS (XS_AIM_print_to_conv)