X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt.h;h=d30984f2fa7dab53825ac15e3b6ca62fc68ac0ec;hp=520c4c99d4ad4c0f4da64db16a45d25be17bcb81;hb=cc707c1e986b60f2c1c1932d0789038d465a7a59;hpb=15d63145b9f11a1fa58c74abbeab7533ea2e5d21 diff --git a/mutt.h b/mutt.h index 520c4c9..d30984f 100644 --- a/mutt.h +++ b/mutt.h @@ -13,6 +13,7 @@ #include #include +#include #define MUTT_VERSION (VERSION) @@ -153,14 +154,6 @@ enum { M_SAVE_OVERWRITE }; -/* possible arguments to set_quadoption() */ -enum { - M_NO, - M_YES, - M_ASKNO, - M_ASKYES -}; - /* quad-option vars */ enum { OPT_ABORT, @@ -180,7 +173,6 @@ enum { OPT_POPRECONNECT, OPT_POSTPONE, OPT_PRINT, - OPT_QUIT, OPT_REPLYTO, OPT_RECALL, #if defined(USE_SSL) || defined(USE_GNUTLS) @@ -233,8 +225,6 @@ enum { OPTATTACHSPLIT, OPTAUTOEDIT, OPTAUTOTAG, - OPTBEEP, - OPTBEEPNEW, OPTBOUNCEDELIVERED, OPTBRAILLEFRIENDLY, OPTCHECKNEW, @@ -447,8 +437,6 @@ enum { #define toggle_option(x) mutt_bit_toggle(Options,x) #define option(x) mutt_bit_isset(Options,x) -int mutt_matches_ignore (const char *, string_list_t *); - void mutt_init (int, string_list_t *); typedef struct thread { @@ -483,9 +471,9 @@ typedef struct { HEADER **hdrs; HEADER *last_tag; /* last tagged msg. used to link threads */ THREAD *tree; /* top of thread tree */ - HASH *id_hash; /* hash table by msg id */ - HASH *subj_hash; /* hash table by subject */ - HASH *thread_hash; /* hash table for threading */ + hash_t *id_hash; /* hash table by msg id */ + hash_t *subj_hash; /* hash table by subject */ + hash_t *thread_hash; /* hash table for threading */ int *v2r; /* mapping from virtual to real msgno */ int hdrmax; /* number of pointers in hdrs */ int msgcount; /* number of messages in the mailbox */