diff src/prpl.h @ 7650:6db061321ec4

[gaim-migrate @ 8293] I completely reverted the dnd sendfile stuff. I thought most of it was pretty decent. The parts for adding the sendfile option to the conv window looked good to me. I can't comment on the dnd stuff. In oscar.c, I didn't see a need to duplicate the oscar_ask_sendfile function. I also don't think the right click->send file option should have been removed... but that's just one man's opinion. Sean, could you please talk to Chip and/or the author of this patch and work towards making it acceptable by you? committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 28 Nov 2003 19:30:45 +0000
parents ea2d07ad05a9
children 1b8261f374ea
line wrap: on
line diff
--- a/src/prpl.h	Fri Nov 28 19:10:57 2003 +0000
+++ b/src/prpl.h	Fri Nov 28 19:30:45 2003 +0000
@@ -313,12 +313,6 @@
 	void (*remove_group)(GaimConnection *gc, const char *group);
 
 	char *(*get_cb_real_name)(GaimConnection *gc, int id, const char *who);
-
-	void (*ask_send_file)(GaimConnection *gc, const char *who);
-
-	void (*send_file)(GaimConnection *gc, const char *who, const char *file);
-
-	gboolean (*has_send_file)(GaimConnection *gc, const char *who);
 };
 
 #define GAIM_IS_PROTOCOL_PLUGIN(plugin) \
@@ -357,23 +351,6 @@
  */
 GaimPlugin *gaim_find_prpl(GaimProtocol type);
 
-/**
- * Ask the user to select a file to send to a user
- *
- * @param gc The Gaim Connection to send the file trough;
- * @param name The screen name of the one we are sending the file;
- */
-void gaim_prpl_ask_send_file (GaimConnection *gc, const char *name);
-
-/**
- * Checks if a given user supports file sends
- *
- * @param gc The Gaim Connection to send the file trough;
- * @param name The screen name of the one we are sending the file;
- * @return TRUE if we can send files to this user, FALSE otherwise.
- */
-gboolean gaim_prpl_has_send_file (GaimConnection *gc, const char *name);
-
 #ifdef __cplusplus
 }
 #endif