X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=globals.h;h=7430db3910736a8c4023abba7deabb70cf88d6ff;hp=96c439af44671bdd2558dce95c3d704a79211f77;hb=0fa8ebfe1d97b31c7d137d6cd45d480fa544d8a5;hpb=03fe827a7d4a7ad79ac235654414aa339a9a2c9a diff --git a/globals.h b/globals.h index 96c439a..7430db3 100644 --- a/globals.h +++ b/globals.h @@ -9,36 +9,25 @@ #ifndef _GLOBALS_H #define _GLOBALS_H -#include "alias.h" +#include -#include -#include -#include - -#include "lib/list.h" - -WHERE void (*mutt_error) (const char *, ...); -WHERE void (*mutt_message) (const char *, ...); +WHERE void (*mutt_error) (const char *, ...) __attribute__((format(printf, 1, 2))) ; +WHERE void (*mutt_message) (const char *, ...) __attribute__((format(printf, 1, 2))) ; WHERE CONTEXT *Context; WHERE char Errorbuf[STRING]; WHERE char AttachmentMarker[STRING]; -WHERE char Quotebuf[SHORT_STRING]; - -WHERE char *MuttDotlock; +WHERE char Quotebuf[STRING]; WHERE address_t *EnvFrom; WHERE address_t *From; -WHERE char *AliasFile; -WHERE char *AliasFmt; WHERE char *AssumedCharset; WHERE char *AttachSep; WHERE char *Attribution; WHERE char *AttachFormat; -WHERE char *Charset; WHERE char *ComposeFormat; WHERE char *ConfigCharset; WHERE char *ContentType; @@ -87,17 +76,14 @@ WHERE rx_t Mask; WHERE rx_t QuoteRegexp; WHERE rx_t ReplyRegexp; WHERE rx_t Smileys; -WHERE rx_t GecosMask; WHERE rx_t StripWasRegexp; WHERE char *Preconnect INITVAL (NULL); WHERE char *Tunnel INITVAL (NULL); WHERE short NetInc; -#ifdef MIXMASTER WHERE char *Mixmaster; WHERE char *MixEntryFormat; -#endif WHERE char *OperatingSystem INITVAL (NULL); @@ -130,8 +116,6 @@ WHERE char *PrintCmd; WHERE char *QueryCmd; WHERE char *Realname; WHERE char *SendCharset; -WHERE char *Sendmail; -WHERE char *Shell; WHERE char *SidebarDelim; WHERE char *SidebarNumberFormat; WHERE char *SidebarBoundary; @@ -157,7 +141,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; @@ -176,25 +160,25 @@ 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 list2_t *Alternates INITVAL (0); -WHERE list2_t *UnAlternates INITVAL (0); -WHERE list2_t *MailLists INITVAL (0); -WHERE list2_t *UnMailLists INITVAL (0); -WHERE list2_t *SubscribedLists INITVAL (0); -WHERE list2_t *UnSubscribedLists INITVAL (0); -WHERE SPAM_LIST *SpamList INITVAL (0); -WHERE list2_t *NoSpamList 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 rx_t *Alternates INITVAL (0); +WHERE rx_t *UnAlternates INITVAL (0); +WHERE rx_t *MailLists INITVAL (0); +WHERE rx_t *UnMailLists INITVAL (0); +WHERE rx_t *SubscribedLists INITVAL (0); +WHERE rx_t *UnSubscribedLists INITVAL (0); +WHERE rx_t *SpamList INITVAL (0); +WHERE rx_t *NoSpamList INITVAL (0); /* bit vector for boolean variables */ #ifdef MAIN_C @@ -210,8 +194,6 @@ unsigned char QuadOptions[(OPT_MAX * 2 + 7) / 8]; extern unsigned char QuadOptions[]; #endif -WHERE unsigned short Counter INITVAL (0); - #ifdef USE_NNTP WHERE short NewsPollTimeout; WHERE short NntpContext; @@ -249,8 +231,7 @@ WHERE SIG_ATOMIC_VOLATILE_T SigWinch INITVAL (0); WHERE int CurrentMenu; -WHERE ALIAS *Aliases INITVAL (0); -WHERE LIST *UserHeader INITVAL (0); +WHERE string_list_t *UserHeader INITVAL (0); /*-- formerly in pgp.h --*/ WHERE rx_t PgpGoodSign;