summaryrefslogtreecommitdiffstats
path: root/mutt.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-06-02 18:52:19 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-06-02 18:52:19 +0000
commitb5eae58059edb774a743a4c7f66229f7124ad5ab (patch)
treeda1a791588407ab272d8462d44d2a06cd3a6c33c /mutt.h
parent9251d06544496d3b5d75612d6966f17fb1585d9c (diff)
Major cutting & pasting: We now have a "real" library in lib.c which
can be linked against external programs without much effort.
Diffstat (limited to 'mutt.h')
-rw-r--r--mutt.h22
1 files changed, 1 insertions, 21 deletions
diff --git a/mutt.h b/mutt.h
index 7e166d7e..38448464 100644
--- a/mutt.h
+++ b/mutt.h
@@ -36,19 +36,6 @@
#include "rfc822.h"
#include "hash.h"
-#ifdef ENABLE_NLS
-# include <libintl.h>
-# define _(a) (gettext (a))
-# ifdef gettext_noop
-# define N_(a) gettext_noop (a)
-# else
-# define N_(a) (a)
-# endif
-#else
-# define _(a) (a)
-# define N_(a) a
-#endif
-
#ifdef SUBVERSION
# define MUTT_VERSION (VERSION SUBVERSION)
#else
@@ -64,14 +51,6 @@
#define INITVAL(x)
#endif
-#define TRUE 1
-#define FALSE 0
-
-#define HUGE_STRING 5120
-#define LONG_STRING 1024
-#define STRING 256
-#define SHORT_STRING 128
-
/* flags for mutt_copy_header() */
#define CH_UPDATE 1 /* update the status and x-status fields? */
#define CH_WEED (1<<1) /* weed the headers? */
@@ -702,4 +681,5 @@ void state_prefix_putc(char, STATE *);
int state_printf(STATE *, const char *, ...);
#include "protos.h"
+#include "lib.h"
#include "globals.h"