b055b12fa5
Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
14 lines
243 B
C
14 lines
243 B
C
|
|
#define SUBJ_LEN 50
|
|
#define FROM_LEN 22
|
|
struct msglst {
|
|
struct msglst *next;
|
|
char subj[SUBJ_LEN];
|
|
char from[FROM_LEN];
|
|
unsigned int in_use:1;
|
|
};
|
|
|
|
void msglst_show(Pop3 *pc, int x, int y);
|
|
void msglst_hide(void);
|
|
void msglst_redraw(void);
|