2011-03-25 18:45:13 +00:00
|
|
|
|
|
|
|
#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;
|
|
|
|
};
|
|
|
|
|
2019-07-02 19:53:41 +00:00
|
|
|
void msglst_show(Pop3 *pc, int x, int y);
|
2011-03-25 18:45:13 +00:00
|
|
|
void msglst_hide(void);
|
|
|
|
void msglst_redraw(void);
|