comparison libpurple/protocols/myspace/myspace.h @ 22302:0e2207b46080

In msimprpl, if the user signs in without any username set (this will happen the first time they login to MySpaceIM if they haven't set a short URL), have them pick a username and use it. Patch from Jaywalker. Closes #2844.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Sat, 16 Feb 2008 20:20:12 +0000
parents 1f3481447197
children 1097406c8f6c
comparison
equal deleted inserted replaced
22301:3ed2c259f656 22302:0e2207b46080
43 #include "accountopt.h" 43 #include "accountopt.h"
44 #include "version.h" 44 #include "version.h"
45 #include "cipher.h" /* for SHA-1 */ 45 #include "cipher.h" /* for SHA-1 */
46 #include "util.h" /* for base64 */ 46 #include "util.h" /* for base64 */
47 #include "debug.h" /* for purple_debug_info */ 47 #include "debug.h" /* for purple_debug_info */
48 #include "request.h" /* For dialogs used in setting the username */
48 #include "xmlnode.h" 49 #include "xmlnode.h"
49 #include "core.h" 50 #include "core.h"
50 51
51 /* MySpaceIM includes */ 52 /* MySpaceIM includes */
52 #include "persist.h" 53 #include "persist.h"
219 int msim_test_escaping(void); 220 int msim_test_escaping(void);
220 #endif 221 #endif
221 222
222 gboolean msim_send_bm(MsimSession *session, const gchar *who, const gchar *text, int type); 223 gboolean msim_send_bm(MsimSession *session, const gchar *who, const gchar *text, int type);
223 224
225 gboolean msim_we_are_logged_on(MsimSession *session);
226
224 227
225 void msim_unrecognized(MsimSession *session, MsimMessage *msg, gchar *note); 228 void msim_unrecognized(MsimSession *session, MsimMessage *msg, gchar *note);
226 guint msim_new_reply_callback(MsimSession *session, MSIM_USER_LOOKUP_CB cb, gpointer data); 229 guint msim_new_reply_callback(MsimSession *session, MSIM_USER_LOOKUP_CB cb, gpointer data);
227 230
228 231