comparison plugins/statenotify.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 1c55b1540e18
children 059d95c67cda
comparison
equal deleted inserted replaced
5675:17e345ffeddb 5676:dae79aefac8d
1 #include "gaim.h" 1 #include "gaim.h"
2 2
3 static void 3 static void
4 write_status(GaimConnection *gc, char *who, const char *message) 4 write_status(GaimConnection *gc, char *who, const char *message)
5 { 5 {
6 struct gaim_conversation *conv; 6 GaimConversation *conv;
7 struct buddy *b; 7 struct buddy *b;
8 char buf[256]; 8 char buf[256];
9 9
10 conv = gaim_find_conversation_with_account(who, gc->account); 10 conv = gaim_find_conversation_with_account(who, gc->account);
11 11