dockapps/wmbiff-0.4.27/wmbiff/MessageList.h
Carlos R. Mafra 21625f40b5 Initial dockapps git repo
I tried to get the latest versions from dockapps.org, but I haven't
tested any of them.

More dockapps will be added as time permits.
2011-03-25 19:45:13 +01:00

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