comparison libpurple/protocols/qq/group_im.c @ 24657:59aae7636111

#if 0 out an unused function to suppress a compiler warning.
author Richard Laager <rlaager@wiktel.com>
date Thu, 11 Dec 2008 04:32:01 +0000
parents 2df1d0449ba6
children 5ec72dbdd28e
comparison
equal deleted inserted replaced
24656:918738a0bba4 24657:59aae7636111
327 /* return should be the internal group id 327 /* return should be the internal group id
328 * but we have nothing to do with it */ 328 * but we have nothing to do with it */
329 return; 329 return;
330 } 330 }
331 331
332 #if 0
332 static void request_room_send_im_ex(PurpleConnection *gc, guint32 room_id, 333 static void request_room_send_im_ex(PurpleConnection *gc, guint32 room_id,
333 qq_im_format *fmt, gchar *msg, guint16 msg_id, guint8 frag_count, guint8 frag_index) 334 qq_im_format *fmt, gchar *msg, guint16 msg_id, guint8 frag_count, guint8 frag_index)
334 { 335 {
335 guint8 raw_data[MAX_PACKET_SIZE - 16]; 336 guint8 raw_data[MAX_PACKET_SIZE - 16];
336 gint bytes; 337 gint bytes;
356 qq_put16(raw_data, bytes - 2); 357 qq_put16(raw_data, bytes - 2);
357 358
358 /*qq_show_packet("QQ_ROOM_CMD_SEND_IM_EX", raw_data, bytes); */ 359 /*qq_show_packet("QQ_ROOM_CMD_SEND_IM_EX", raw_data, bytes); */
359 qq_send_room_cmd(gc, QQ_ROOM_CMD_SEND_IM_EX, room_id, raw_data, bytes); 360 qq_send_room_cmd(gc, QQ_ROOM_CMD_SEND_IM_EX, room_id, raw_data, bytes);
360 } 361 }
362 #endif
361 363
362 /* send a chat msg to a QQ Qun 364 /* send a chat msg to a QQ Qun
363 * called by purple */ 365 * called by purple */
364 int qq_chat_send(PurpleConnection *gc, int id, const char *what, PurpleMessageFlags flags) 366 int qq_chat_send(PurpleConnection *gc, int id, const char *what, PurpleMessageFlags flags)
365 { 367 {