mirror of
https://git.code.sf.net/p/fldigi/flmsg
synced 2026-08-13 17:30:58 -04:00
* Added escape encoding for all file types
- Allows compressed files to transferred using either
base64, base128 or base256 with escaped control bytes.
* Added ability to transmit generic files including:
- jpeg image
- png images
- xls, doc and other office documents
* Transfer time computed for various levels of compression /
base encoding
18 lines
382 B
C
18 lines
382 B
C
#ifndef _TRANSFER_
|
|
#define _TRANSFER_
|
|
|
|
#include <FL/Fl_Output.H>
|
|
#include <FL/Fl_Button.H>
|
|
|
|
extern Fl_Group *tab_transfer;
|
|
extern Fl_Output *txt_send_filename;
|
|
extern Fl_Output *txt_rcvd_filename;
|
|
extern Fl_Button *btn_select_send;
|
|
extern Fl_Button *btn_save_rcvd;
|
|
|
|
extern string def_transfer_filename;
|
|
|
|
extern void create_transfer_tab();
|
|
extern void clear_transfer_form();
|
|
|
|
#endif
|