14 lines
242 B
C
14 lines
242 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);
|