1 // ----------------------------------------------------------------------------
2 //  ex_extract.h Remote Log Interface for fldigi
3 //
4 // Copyright W1HKJ, Dave Freese 2006
5 //
6 // This file is part of fldigi.
7 //
8 // Fldigi is free software: you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation, either version 3 of the License, or
11 // (at your option) any later version.
12 //
13 // Fldigi is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with fldigi.  If not, see <http://www.gnu.org/licenses/>.
20 // ----------------------------------------------------------------------------
21 
22 #ifndef _RX_EXTRACT_H
23 #define _RX_EXTRACT_H
24 
25 #include <string>
26 
27 extern const char *txtWrapInfo;
28 extern void rx_extract_add(int c);
29 extern void select_flmsg_pathname();
30 extern std::string select_binary_pathname(std::string deffilename);
31 
32 extern bool extract_wrap;
33 extern bool extract_flamp;
34 
35 #endif
36