From: pdmef Date: Mon, 21 Mar 2005 03:13:56 +0000 (+0000) Subject: Rocco Rutte: X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=5027f6335acf003a55691db9def391ff4c26264f Rocco Rutte: update headers for list, too git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@216 e385b8ad-14ed-0310-8656-cc95a2468c6d --- diff --git a/buffy.h b/buffy.h index 0a64a78..469ac46 100644 --- a/buffy.h +++ b/buffy.h @@ -6,6 +6,10 @@ * It's licensed under the GNU General Public License, * please see the file GPL in the top level source directory. */ +#ifndef _BUFFY_H +#define _BUFFY_H + +#include "lib/list.h" /*parameter to mutt_parse_mailboxes*/ #define M_MAILBOXES 1 @@ -16,8 +20,6 @@ typedef struct buffy_t { #ifdef BUFFY_SIZE long size; #endif /* BUFFY_SIZE */ - struct buffy_t *next; - struct buffy_t *prev; short new; /* mailbox has new mail */ short has_new; /* set it new if new and not read */ int msgcount; /* total number of messages */ @@ -28,12 +30,21 @@ typedef struct buffy_t { short newly_created; /* mbox or mmdf just popped into existence */ } BUFFY; -WHERE BUFFY *Incoming INITVAL (0); +WHERE list2_t* Incoming; WHERE short BuffyTimeout INITVAL (3); +/* + * looks up a path in Incoming list + * there needs to be an extra function since we have everything but + * object of type BUFFY when we want to a do a lookup ;-( + */ +int buffy_lookup (const char*); + extern time_t BuffyDoneTime; /* last time we knew for sure how much mail there was */ #ifdef BUFFY_SIZE BUFFY *mutt_find_mailbox (const char *path); void mutt_update_mailbox (BUFFY * b); #endif + +#endif /* !_BUFFY_H */ diff --git a/globals.h b/globals.h index 1c54f6a..88782e7 100644 --- a/globals.h +++ b/globals.h @@ -211,7 +211,6 @@ WHERE short ScoreThresholdDelete; WHERE short ScoreThresholdRead; WHERE short ScoreThresholdFlag; -WHERE struct buffy_t *CurBuffy INITVAL (0); WHERE short DrawFullLine INITVAL (0); WHERE short SidebarWidth; diff --git a/sidebar.h b/sidebar.h index f31c960..f850d67 100644 --- a/sidebar.h +++ b/sidebar.h @@ -8,14 +8,13 @@ * please see the file GPL in the top level source directory. */ -#ifndef SIDEBAR_H -#define SIDEBAR_H +#ifndef _SIDEBAR_H +#define _SIDEBAR_H -/* parameter is whether or not to go to the status line */ -/* used for omitting the last | that covers up the status bar in the index */ -int draw_sidebar (int); -void scroll_sidebar (int, int); -void set_curbuffy (char *); -void set_buffystats (CONTEXT *); +int sidebar_draw (int); +void sidebar_scroll (int, int); +void sidebar_set_buffystats (CONTEXT *); +const char* sidebar_get_current (void); +void sidebar_set_current (const char*); -#endif /* SIDEBAR_H */ +#endif /* _SIDEBAR_H */