Andreas Krennmair:
[apps/madmutt.git] / mutt.h
diff --git a/mutt.h b/mutt.h
index 6a6b036..dda0aaa 100644 (file)
--- a/mutt.h
+++ b/mutt.h
@@ -158,6 +158,11 @@ typedef enum
 #define M_CRYPTHOOK    (1<<8)
 #define M_ACCOUNTHOOK  (1<<9)
 #define M_REPLYHOOK    (1<<10)
+#ifdef USE_COMPRESSED
+#define M_OPENHOOK     (1<<12)
+#define M_APPENDHOOK   (1<<13)
+#define M_CLOSEHOOK    (1<<14)
+#endif
 
 /* tree characters for linearize_tree and print_enriched_string */
 #define M_TREE_LLCORNER                1
@@ -446,6 +451,7 @@ enum
   OPTWRAP,
   OPTWRAPSEARCH,
   OPTWRITEBCC,         /* write out a bcc header? */
+  OPTXFACE,
   OPTXMAILER,
   OPTXTERMSETTITLES,
 
@@ -598,6 +604,7 @@ typedef struct envelope
 #endif
   LIST *references;            /* message references (in reverse order) */
   LIST *in_reply_to;           /* in-reply-to header content */
+  LIST *x_face;                        /* X-Face header content */
   LIST *userhdrs;              /* user defined headers */
 } ENVELOPE;
 
@@ -833,6 +840,11 @@ typedef struct
 
   short magic;                 /* mailbox type */
 
+#ifdef USE_COMPRESSED
+  void *compressinfo;          /* compressed mbox module private data */
+  char *realpath;              /* path to compressed mailbox */
+#endif /* USE_COMPRESSED */
+
   unsigned int locked : 1;     /* is the mailbox locked? */
   unsigned int changed : 1;    /* mailbox has been modified */
   unsigned int readonly : 1;    /* don't allow changes to the mailbox */