diff src/server.c @ 1920:5bed3bc833b5

[gaim-migrate @ 1930] in addition, frombase64 mods, needed for buddy icon in toc. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 30 May 2001 18:26:52 +0000
parents fe79493094e7
children 6a9109c79034
line wrap: on
line diff
--- a/src/server.c	Wed May 30 07:59:35 2001 +0000
+++ b/src/server.c	Wed May 30 18:26:52 2001 +0000
@@ -303,6 +303,12 @@
 		(*g->prpl->chat_whisper)(g, id, who, message);
 }
 
+void serv_chat_set_topic(struct gaim_connection *g, int id, char *topic) 
+{
+   	if (g->prpl && g->prpl->chat_set_topic)
+	   	(*g->prpl->chat_set_topic)(g, id, topic);
+}
+
 void serv_chat_send(struct gaim_connection *g, int id, char *message)
 {
 	if (g->prpl && g->prpl->chat_send)