comparison src/protocols/yahoo/yahoo.c @ 6622:a4622f1fb5a1

[gaim-migrate @ 7146] (10:10:23) Robot101: kills off OPT_CONN_* in favour of an enum, and deprecates all the IM_FLAGS_* except IM_FLAG_AWAY which is made into GAIM_IM_AUTO_RESP in a GaimImFlags enum. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 25 Aug 2003 14:12:28 +0000
parents cc41123c684a
children 156e6643f9db
comparison
equal deleted inserted replaced
6621:42fdf16f1dad 6622:a4622f1fb5a1
1191 m = g_list_append(m, pam); 1191 m = g_list_append(m, pam);
1192 1192
1193 return m; 1193 return m;
1194 } 1194 }
1195 1195
1196 static int yahoo_send_im(GaimConnection *gc, const char *who, const char *what, int len, int flags) 1196 static int yahoo_send_im(GaimConnection *gc, const char *who, const char *what, int len, GaimImFlags flags)
1197 { 1197 {
1198 struct yahoo_data *yd = gc->proto_data; 1198 struct yahoo_data *yd = gc->proto_data;
1199 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_MESSAGE, YAHOO_STATUS_OFFLINE, 0); 1199 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_MESSAGE, YAHOO_STATUS_OFFLINE, 0);
1200 char *msg = g_strdup(what); 1200 char *msg = g_strdup(what);
1201 1201