comparison src/gaim.h @ 5136:381da05cb5ed

[gaim-migrate @ 5500] this started out as simply adding an option to right-click on a jabber buddy and re-request authorization. Then I ended up chasing the disgusting mess of const vs non-const parameters all over gaim. The end result is that you can now right-click on jabber buddies and re-request auth like you can for ICQ. Also, a lot more things are const that should be, I fixed a bug or two, and I cleaned up one of my least favorite functions in gaim (linkify_text). It is now decidedly less evil. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 15 Apr 2003 04:18:00 +0000
parents 496ea7c1b77b
children 0241d6b6702d
comparison
equal deleted inserted replaced
5135:102135caa225 5136:381da05cb5ed
347 extern void rename_chat_buddy(struct gaim_conversation *, char *, char *); 347 extern void rename_chat_buddy(struct gaim_conversation *, char *, char *);
348 extern void remove_chat_buddy(struct gaim_conversation *, char *, char *); 348 extern void remove_chat_buddy(struct gaim_conversation *, char *, char *);
349 #endif 349 #endif
350 350
351 /* Functions in dialogs.c */ 351 /* Functions in dialogs.c */
352 extern void g_show_info_text(struct gaim_connection *, char *, int, char *, ...); 352 extern void g_show_info_text(struct gaim_connection *, const char *, int, const char *, ...);
353 extern GtkWidget *do_error_dialog(const char *, const char *, int type); 353 extern GtkWidget *do_error_dialog(const char *, const char *, int type);
354 extern void show_change_passwd(struct gaim_connection *); 354 extern void show_change_passwd(struct gaim_connection *);
355 extern void show_set_dir(struct gaim_connection *); 355 extern void show_set_dir(struct gaim_connection *);
356 extern void show_find_email(struct gaim_connection *); 356 extern void show_find_email(struct gaim_connection *);
357 extern void show_find_info(struct gaim_connection *); 357 extern void show_find_info(struct gaim_connection *);
410 extern void serv_chat_invite(struct gaim_connection *, int, const char *, const char *); 410 extern void serv_chat_invite(struct gaim_connection *, int, const char *, const char *);
411 extern void serv_chat_leave(struct gaim_connection *, int); 411 extern void serv_chat_leave(struct gaim_connection *, int);
412 extern void serv_chat_whisper(struct gaim_connection *, int, char *, char *); 412 extern void serv_chat_whisper(struct gaim_connection *, int, char *, char *);
413 extern int serv_chat_send(struct gaim_connection *, int, char *); 413 extern int serv_chat_send(struct gaim_connection *, int, char *);
414 extern void serv_got_popup(char *, char *, int, int); 414 extern void serv_got_popup(char *, char *, int, int);
415 extern void serv_get_away(struct gaim_connection *, char *); 415 extern void serv_get_away(struct gaim_connection *, const char *);
416 extern void serv_alias_buddy(struct buddy *); 416 extern void serv_alias_buddy(struct buddy *);
417 extern void serv_move_buddy(struct buddy *, struct group *, struct group *); 417 extern void serv_move_buddy(struct buddy *, struct group *, struct group *);
418 extern void serv_rename_group(struct gaim_connection *, struct group *, const char *); 418 extern void serv_rename_group(struct gaim_connection *, struct group *, const char *);
419 419
420 /* Functions in log.h */ 420 /* Functions in log.h */