1 #ifndef N3FJP_LOGGER_H
2 #define N3FJP_LOGGER_H
3 
4 #include <string>
5 
6 #include "qso_db.h"
7 
8 extern std::string n3fjp_serno;
9 
10 extern void get_n3fjp_udp();
11 extern void *n3fjp_loop(void *args);
12 extern void n3fjp_init(void);
13 extern void n3fjp_start();
14 extern void n3fjp_restart();
15 extern void n3fjp_close(void);
16 
17 extern int  n3fjp_dupcheck();
18 extern void n3fjp_add_record(cQsoRec &rec);
19 extern void n3fjp_get_record(string rec);
20 extern void n3fjp_set_freq(long f);
21 extern void n3fjp_set_ptt(int on);
22 extern void n3fjp_clear_record();
23 
24 extern bool n3fjp_connected;
25 extern bool n3fjp_calltab;
26 
27 #endif // N3FJP_LOGGER_H
28