diff src/gtk/gftp-gtk.h @ 367:d5409bf03ff1

2003-1-18 Brian Masney <masneyb@gftp.org> * lib/protocols.c (gftp_parse_url) - if the URL is the local filesystem, skip over the whitespace at the beginning. * lib/rfc959.c (rfc959_syst) - allow the string MVS and OS/MVS for the MVS directory listings. * src/gtk/gtkui_transfer.c src/gtk/transfer.c src/gtk/gftpui.c - started to move the transfer functionality into the uicommon directory. Added the text and GTK+ UI specific transfer functions. * src/gtk/Makefile.am po/POTFILES.in - added gtkui_transfer.c * src/gtk/dnd.c src/gtk/gtkui_transfer.c src/gtk/view_dialog.c - s/add_file_transfer/gtkui_common_add_file_transfer/ * src/gtk/gftp-gtk.c src/gtk/gftp-gtk.h - removed transfer_mutex * src/gtk/gtkui.c src/text/textui.c - added gftpui_add_file_to_transfer() * src/uicommon/gftpui_callbacks.c src/uicommon/gftpui.c - in all of the thread callback functions, don't alter the return value in the function. Return it as is.
author masneyb
date Sun, 18 Jan 2004 20:09:28 +0000
parents 60d3da6ab336
children d207b8241e96
line wrap: on
line diff
--- a/src/gtk/gftp-gtk.h	Sun Jan 18 19:56:01 2004 +0000
+++ b/src/gtk/gftp-gtk.h	Sun Jan 18 20:09:28 2004 +0000
@@ -141,13 +141,6 @@
 } gftp_viewedit_data;
 
 
-typedef struct gftp_curtrans_data_tag
-{
-  gftp_transfer * transfer;
-  GList * curfle;
-} gftp_curtrans_data;
-
-
 typedef struct gftp_save_dir_struct_tag
 {
   GtkWidget * filew;
@@ -189,7 +182,7 @@
 extern GHashTable * graphic_hash_table;
 extern GtkItemFactoryEntry * menus;
 extern GtkItemFactory * factory;
-extern pthread_mutex_t transfer_mutex, log_mutex;
+extern pthread_mutex_t log_mutex;
 extern gftp_graphic * gftp_icon;
 extern pthread_t main_thread_id;
 extern GList * viewedit_processes;
@@ -408,8 +401,6 @@
 
 gint update_downloads 				( gpointer data );
 
-void * gftp_gtk_transfer_files 			( void *data );
-
 void get_files 					( gpointer data );
 
 void put_files 					( gpointer data );
@@ -419,13 +410,6 @@
 
 void *do_getdir_thread 				( void * data );
 
-gftp_transfer * add_file_transfer 		( gftp_request * fromreq, 
-						  gftp_request * toreq, 
-						  gftp_window_data * fromwdata,
-						  gftp_window_data * towdata, 
-						  GList * files,
-						  int copy_req );
-
 void start_transfer				( gpointer data );
 
 void stop_transfer				( gpointer data );
@@ -438,8 +422,6 @@
 
 void move_transfer_down				( gpointer data );
 
-void gftp_gtk_ask_transfer 			( gftp_transfer * tdata );
-
 /* view_dialog.c */
 void edit_dialog 				( gpointer data );