diff libpurple/protocols/myspace/myspace.h @ 17319:4cb842e0649c

Make msim_remove_buddy() functional. It now sends the delbuddy, persist, and blocklist commands, each using msim_postprocess_outgoing(). Tested by removing a buddy, restarting Pidgin, and ensuring it did not reappear. msim_postprocess_outgoing() and msim_postprocess_outgoing_cb() now both use msim_do_postprocessing() to do the actual postprocessing -- insertion of the uid into the message. msim_postprocess_outgoing() calls msim_do_postprocessing() if the uid is immediately available (for example, from the buddy list), while msim_postprocess_outgoing_cb() calls it when the uid was looked up from the server. The new function avoids code duplication, which is important now because of the additional feature of having "<uid>" within a string replaced with the uid, i instead of adding a new integer field of the uid. msim_remove_buddy uses this to insert the uid into the "body" field.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Wed, 13 Jun 2007 22:57:54 +0000
parents e9dfd3a5d4b6
children 8c51a7920199
line wrap: on
line diff
--- a/libpurple/protocols/myspace/myspace.h	Wed Jun 13 22:44:26 2007 +0000
+++ b/libpurple/protocols/myspace/myspace.h	Wed Jun 13 22:57:54 2007 +0000
@@ -171,6 +171,7 @@
 
 gboolean msim_process(MsimSession *session, MsimMessage *msg);
 
+MsimMessage *msim_do_postprocessing(MsimMessage *msg, gchar *uid_field_name, gchar *uid_before, guint uid);
 void msim_postprocess_outgoing_cb(MsimSession *session, MsimMessage *userinfo, gpointer data);
 gboolean msim_postprocess_outgoing(MsimSession *session, MsimMessage *msg, gchar *username, 
 	gchar *uid_field_name, gchar *uid_before);