--- a/libpurple/protocols/gg/edisc.h Sat Nov 03 13:25:21 2012 +0100 +++ b/libpurple/protocols/gg/edisc.h Sun Nov 04 17:47:10 2012 +0100 @@ -5,17 +5,18 @@ typedef struct _ggp_edisc_session_data ggp_edisc_session_data; +/* Setting up. */ void ggp_edisc_setup(PurpleConnection *gc); void ggp_edisc_cleanup(PurpleConnection *gc); -void ggp_edisc_event_send_ticket_changed(PurpleConnection *gc, +/* General xfer functions. */ +void ggp_edisc_xfer_ticket_changed(PurpleConnection *gc, const char *data); +/* Sending a file. */ gboolean ggp_edisc_xfer_can_receive_file(PurpleConnection *gc, const char *who); - void ggp_edisc_xfer_send_file(PurpleConnection *gc, const char *who, const char *filename); - -PurpleXfer * ggp_edisc_xfer_new(PurpleConnection *gc, const char *who); +PurpleXfer * ggp_edisc_xfer_send_new(PurpleConnection *gc, const char *who); #endif /* _GGP_EDISC_H */