dl-fldigi/src/include/main.h

97 wiersze
2.1 KiB
C++

#ifndef MAIN_H_
#define MAIN_H_
#include <config.h>
#include <string>
#include "ptt.h"
#include "log.h"
#if USE_HAMLIB
# include "rigclass.h"
#endif
extern std::string appname;
extern std::string HomeDir;
extern std::string RigsDir;
extern std::string ScriptsDir;
extern std::string PalettesDir;
extern std::string LogsDir;
extern std::string PicsDir;
extern std::string HelpDir;
extern std::string MacrosDir;
extern std::string WrapDir;
extern std::string TalkDir;
extern std::string TempDir;
extern std::string PskMailDir;
extern std::string NBEMS_dir;
extern std::string ARQ_dir;
extern std::string ARQ_files_dir;
extern std::string ARQ_recv_dir;
extern std::string ARQ_send;
extern std::string WRAP_dir;
extern std::string WRAP_recv_dir;
extern std::string WRAP_send_dir;
extern std::string WRAP_auto_dir;
extern std::string ICS_dir;
extern std::string ICS_msg_dir;
extern std::string ICS_tmp_dir;
extern std::string FLMSG_dir;
extern std::string FLMSG_WRAP_dir;
extern std::string FLMSG_WRAP_recv_dir;
extern std::string FLMSG_WRAP_send_dir;
extern std::string FLMSG_WRAP_auto_dir;
extern std::string FLMSG_ICS_dir;
extern std::string FLMSG_ICS_msg_dir;
extern std::string FLMSG_ICS_tmp_dir;
extern std::string xmlfname;
extern std::string scDevice[2];
extern PTT *push2talk;
#if USE_HAMLIB
extern Rig *xcvr;
#endif
extern cLogfile *Maillogfile;
extern cLogfile *logfile;
extern bool gmfskmail;
extern bool arqmode;
extern std::string ArqFilename;
extern bool mailclient;
extern bool mailserver;
extern bool tlfio;
extern bool arq_text_available;
extern char arq_get_char();
// ARQ mail implementation
extern void arq_init();
extern void arq_close();
extern void WriteARQ(unsigned char);
extern void checkTLF();
#define ARQBUFSIZ 8192
struct RXMSGSTRUC {
long int msg_type;
char c;
};
struct TXMSGSTRUC {
long int msg_type;
char buffer[ARQBUFSIZ];
};
extern RXMSGSTRUC rxmsgst;
extern int rxmsgid;
extern TXMSGSTRUC txmsgst;
extern int txmsgid;
void check_nbems_dirs(void);
extern bool nbems_dirs_checked;
#endif