#ifndef FILETRANSFER_H #define FILETRANSFER_H #ifndef CONNECTION_H #include "connection.h" #endif #ifndef FILETHREAD_H #include "filethread.h" #endif void filetransfer_start(FileData *fd,int is_upload,FileEntry *which_file); void handle_ftq_update(Connection *c,Message *m,gpointer data); void ft_update_queue(FileTransfer *); int ft_test_reply_close(gpointer func); int ft_is_zombie(gpointer ft); #endif