Strip off version numbers from dir name
[dockapps.git] / wmbiff / wmbiff / MessageList.h
blob188961526889661ef46bc3fec8982b4dc7c9ff3d
2 #define SUBJ_LEN 50
3 #define FROM_LEN 22
4 struct msglst {
5 struct msglst *next;
6 char subj[SUBJ_LEN];
7 char from[FROM_LEN];
8 unsigned int in_use:1;
9 };
11 void msglst_show(Pop3 pc, int x, int y);
12 void msglst_hide(void);
13 void msglst_redraw(void);