#include "options.h"
#include "protos.h"
-/* These Config Variables are only used in conn/conn_raw.c */
-extern bool UseIpv6;
-
/**
* socket_connect - set up to connect to a socket fd
* @param fd File descriptor to connect with
#include "protos.h"
/* These Config Variables are only used in history.c */
-short History;
-char *HistoryFile;
-bool HistoryRemoveDups;
-short SaveHistory;
+short History; /**< Number of history entries stored in memory */
+char *HistoryFile; /**< File in which to store all the histories */
+bool HistoryRemoveDups; /**< Remove duplicate history entries */
+short SaveHistory; /**< Number of history entries, per category, stored on disk */
#define HC_FIRST HC_CMD
/* global vars used for the string-history routines */
-short History; /**< Number of history entries stored in memory */
-char *HistoryFile; /**< File in which to store all the histories */
-bool HistoryRemoveDups; /**< Remove duplicate history entries */
-short SaveHistory; /**< Number of history entries, per category, stored on disk */
-
static struct History Histories[HC_LAST];
static int OldSize = 0;
#include "nntp/nntp.h"
#endif
-/* These Config Variables are only used in main.c */
-extern bool ResumeEditedDraftFiles;
-
#define MUTT_IGNORE (1 << 0) /* -z */
#define MUTT_BUFFY (1 << 1) /* -Z */
#define MUTT_NOSYSRC (1 << 2) /* -n */
char *MixEntryFormat;
char *Mixmaster;
+#define MIX_CAP_COMPRESS (1 << 0)
+#define MIX_CAP_MIDDLEMAN (1 << 1)
+#define MIX_CAP_NEWSPOST (1 << 2)
+#define MIX_CAP_NEWSMAIL (1 << 3)
+
/**
* struct Coord - Screen coordinates
*/
extern char *MixEntryFormat;
extern char *Mixmaster;
-#define MIX_CAP_COMPRESS (1 << 0)
-#define MIX_CAP_MIDDLEMAN (1 << 1)
-#define MIX_CAP_NEWSPOST (1 << 2)
-#define MIX_CAP_NEWSMAIL (1 << 3)
-
/* Mixmaster's maximum chain length. Don't change this. */
#define MAXMIXES 19