Deal with $hostname and $shorthost
[apps/madmutt.git] / buffy.h
diff --git a/buffy.h b/buffy.h
index 1e1c55f..fdd2ca3 100644 (file)
--- a/buffy.h
+++ b/buffy.h
@@ -9,8 +9,6 @@
 #ifndef _BUFFY_H
 #define _BUFFY_H
 
-#include "lib/list.h"
-
 /*parameter to mutt_parse_mailboxes*/
 #define M_MAILBOXES   1
 #define M_UNMAILBOXES 2
@@ -27,8 +25,18 @@ typedef struct buffy_t {
   short newly_created;          /* mbox or mmdf just popped into existence */
 } BUFFY;
 
+DO_INIT(BUFFY, buffy);
+static inline void buffy_wipe(BUFFY *p) {
+    p_delete(&p->path);
+}
+DO_NEW(BUFFY, buffy);
+DO_DELETE(BUFFY, buffy);
+
+DO_ARRAY_TYPE(BUFFY, buffy);
+DO_ARRAY_FUNCS(BUFFY, buffy, buffy_delete);
+
 /* folders with incomming mail (via mailboxes command) */
-WHERE list2_t* Incoming;
+WHERE buffy_array Incoming;
 WHERE short BuffyTimeout INITVAL (3);
 extern time_t BuffyDoneTime;    /* last time we knew for sure how much mail there was */