X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=globals.h;h=3f3a45cd20c464ddd610e177da900baa494861cc;hp=5bec12eccc411f8c4951b57249d7406dd9e52124;hb=108f3c7ab59844591f7540347914ea57be5245e2;hpb=a8808601c98c76ec8344c8e4ba5a607d72c2805e diff --git a/globals.h b/globals.h index 5bec12e..3f3a45c 100644 --- a/globals.h +++ b/globals.h @@ -12,8 +12,10 @@ #include "alias.h" #include +#include +#include + #include "lib/list.h" -#include "lib/rx.h" WHERE void (*mutt_error) (const char *, ...); WHERE void (*mutt_message) (const char *, ...); @@ -70,7 +72,7 @@ WHERE char *Maildir; #ifdef USE_HCACHE WHERE char *HeaderCache; -#if HAVE_GDBM || HAVE_DB4 +#if defined(HAVE_GDBM) || defined(HAVE_DB4) WHERE char *HeaderCachePageSize; #endif /* HAVE_GDBM || HAVE_DB4 */ #endif /* USE_HCACHE */ @@ -155,7 +157,7 @@ WHERE char *SslEntropyFile INITVAL (NULL); #endif #ifdef USE_SSL WHERE char *SslClientCert INITVAL (NULL); -WHERE LIST *SslSessionCerts INITVAL (NULL); +WHERE string_list_t *SslSessionCerts INITVAL (NULL); #endif #ifdef USE_GNUTLS WHERE short SslDHPrimeBits; @@ -174,16 +176,16 @@ WHERE char *XtermIcon; WHERE char *CurrentFolder; WHERE char *LastFolder; -WHERE LIST *AutoViewList INITVAL (0); -WHERE LIST *AlternativeOrderList INITVAL (0); -WHERE LIST *AttachAllow INITVAL(0); -WHERE LIST *AttachExclude INITVAL(0); -WHERE LIST *InlineAllow INITVAL(0); -WHERE LIST *InlineExclude INITVAL(0); -WHERE LIST *HeaderOrderList INITVAL (0); -WHERE LIST *Ignore INITVAL (0); -WHERE LIST *MimeLookupList INITVAL (0); -WHERE LIST *UnIgnore INITVAL (0); +WHERE string_list_t *AutoViewList INITVAL (0); +WHERE string_list_t *AlternativeOrderList INITVAL (0); +WHERE string_list_t *AttachAllow INITVAL(0); +WHERE string_list_t *AttachExclude INITVAL(0); +WHERE string_list_t *InlineAllow INITVAL(0); +WHERE string_list_t *InlineExclude INITVAL(0); +WHERE string_list_t *HeaderOrderList INITVAL (0); +WHERE string_list_t *Ignore INITVAL (0); +WHERE string_list_t *MimeLookupList INITVAL (0); +WHERE string_list_t *UnIgnore INITVAL (0); WHERE list2_t *Alternates INITVAL (0); WHERE list2_t *UnAlternates INITVAL (0); @@ -247,8 +249,8 @@ WHERE SIG_ATOMIC_VOLATILE_T SigWinch INITVAL (0); WHERE int CurrentMenu; -WHERE ALIAS *Aliases INITVAL (0); -WHERE LIST *UserHeader INITVAL (0); +WHERE alias_t *Aliases INITVAL (0); +WHERE string_list_t *UserHeader INITVAL (0); /*-- formerly in pgp.h --*/ WHERE rx_t PgpGoodSign;