comparison src/uicommon/gftpui.h @ 350:e5ad008e7ea8

2003-1-4 Brian Masney <masneyb@gftp.org> * src/uicommon/gftpui.c src/uicommon/gftpui.h src/uicommon/gftpuicallbacks.c - when switching between ascii/binary, set the option on a global basis. Converted chdir, chmod, delete, rename, rmdir commands over to using the new command run format so that it will work in the different UIs. Added site command to the command line.
author masneyb
date Sun, 04 Jan 2004 17:31:59 +0000
parents eedc2c5727fa
children 60d3da6ab336
comparison
equal deleted inserted replaced
349:3fccdc9eb16f 350:e5ad008e7ea8
96 96
97 int gftpui_common_run_site ( gftpui_callback_data * cdata ); 97 int gftpui_common_run_site ( gftpui_callback_data * cdata );
98 98
99 int gftpui_common_run_chdir ( gftpui_callback_data * cdata ); 99 int gftpui_common_run_chdir ( gftpui_callback_data * cdata );
100 100
101 int gftpui_common_run_chmod ( gftpui_callback_data * cdata );
102
103 int gftpui_common_run_delete ( gftpui_callback_data * cdata );
104
105 int gftpui_common_run_rmdir ( gftpui_callback_data * cdata );
106
101 /* UI Functions that must be implemented by each distinct UI */ 107 /* UI Functions that must be implemented by each distinct UI */
102 void gftpui_lookup_file_colors ( gftp_file * fle, 108 void gftpui_lookup_file_colors ( gftp_file * fle,
103 char **start_color, 109 char **start_color,
104 char ** end_color ); 110 char ** end_color );
105 111