diff src/server.c @ 5676:dae79aefac8d

[gaim-migrate @ 6094] I've been meaning to do this for a LONG time. The conversation API now follows the naming convention of the rest of the new APIs. I'll get some g_return_*_if_fail() checks in there soon. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 02 Jun 2003 21:51:06 +0000
parents 4e2ffa3d9094
children 8e618a7111a5
line wrap: on
line diff
--- a/src/server.c	Mon Jun 02 21:14:50 2003 +0000
+++ b/src/server.c	Mon Jun 02 21:51:06 2003 +0000
@@ -99,7 +99,7 @@
 	GaimPluginProtocolInfo *prpl_info = NULL;
 
 	while (gc->buddy_chats) {
-		struct gaim_conversation *b = gc->buddy_chats->data;
+		GaimConversation *b = gc->buddy_chats->data;
 
 		gc->buddy_chats = g_slist_remove(gc->buddy_chats, b);
 
@@ -189,7 +189,7 @@
 int serv_send_im(GaimConnection *gc, char *name, char *message,
 				 int len, int flags)
 {
-	struct gaim_conversation *c;
+	GaimConversation *c;
 	int val = -EINVAL;
 	GaimPluginProtocolInfo *prpl_info = NULL;
 
@@ -757,7 +757,7 @@
 	int plugin_return;
 	int away = 0;
 
-	struct gaim_conversation *cnv;
+	GaimConversation *cnv;
 
 	char *message, *name;
 
@@ -1087,7 +1087,7 @@
 
 	if (loggedin) {
 		if (!GAIM_BUDDY_IS_ONLINE(b)) {
-			struct gaim_conversation *c = gaim_find_conversation(b->name);
+			GaimConversation *c = gaim_find_conversation(b->name);
 			if (c != NULL &&
 				gaim_prefs_get_bool("/core/conversations/im/show_login")) {
 
@@ -1115,7 +1115,7 @@
 		}
 	} else {
 		if (GAIM_BUDDY_IS_ONLINE(b)) {
-			struct gaim_conversation *c = gaim_find_conversation(b->name);
+			GaimConversation *c = gaim_find_conversation(b->name);
 			if (c != NULL &&
 				gaim_prefs_get_bool("/core/conversations/im/show_login")) {
 
@@ -1173,8 +1173,8 @@
 					 int state) {
 
 	struct buddy *b;
-	struct gaim_conversation *cnv = gaim_find_conversation(name);
-	struct gaim_im *im;
+	GaimConversation *cnv = gaim_find_conversation(name);
+	GaimIm *im;
 
 	if (!cnv)
 		return;
@@ -1198,8 +1198,8 @@
 
 void serv_got_typing_stopped(GaimConnection *gc, const char *name) {
 
-	struct gaim_conversation *c = gaim_find_conversation(name);
-	struct gaim_im *im;
+	GaimConversation *c = gaim_find_conversation(name);
+	GaimIm *im;
 	struct buddy *b;
 
 	if (!c)
@@ -1270,11 +1270,11 @@
 							   G_CALLBACK(chat_invite_data_free));
 }
 
-struct gaim_conversation *serv_got_joined_chat(GaimConnection *gc,
+GaimConversation *serv_got_joined_chat(GaimConnection *gc,
 											   int id, const char *name)
 {
-	struct gaim_conversation *b;
-	struct gaim_chat *chat;
+	GaimConversation *b;
+	GaimChat *chat;
 
 	b = gaim_conversation_new(GAIM_CONV_CHAT, gc->account, name);
 	chat = GAIM_CHAT(b);
@@ -1320,11 +1320,11 @@
 void serv_got_chat_left(GaimConnection *g, int id)
 {
 	GSList *bcs;
-	struct gaim_conversation *conv = NULL;
-	struct gaim_chat *chat = NULL;
+	GaimConversation *conv = NULL;
+	GaimChat *chat = NULL;
 
 	for (bcs = g->buddy_chats; bcs != NULL; bcs = bcs->next) {
-		conv = (struct gaim_conversation *)bcs->data;
+		conv = (GaimConversation *)bcs->data;
 
 		chat = GAIM_CHAT(conv);
 
@@ -1352,14 +1352,14 @@
 {
 	int w;
 	GSList *bcs;
-	struct gaim_conversation *conv = NULL;
-	struct gaim_chat *chat = NULL;
+	GaimConversation *conv = NULL;
+	GaimChat *chat = NULL;
 	char *buf;
 	char *buffy, *angel;
 	int plugin_return;
 
 	for (bcs = g->buddy_chats; bcs != NULL; bcs = bcs->next) {
-		conv = (struct gaim_conversation *)bcs->data;
+		conv = (GaimConversation *)bcs->data;
 
 		chat = GAIM_CHAT(conv);