dockapps/wmbiff-0.4.27/wmbiff/MessageList.h

14 lines
242 B
C
Raw Normal View History

#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);