9 void print_list_line(int i, int line);
10 void list_headerline();
17 void move_curitem(int direction);
20 void highlight_line(WINDOW *win, int line);
22 void invert_selection();
23 int list_current_item();
33 #define LIST_BOTTOM (LINES-3)
35 #define LIST_LINES (LIST_BOTTOM-LIST_TOP)
36 #define LIST_COLS COLS
39 #define EMAILPOS options_get_int("emailpos")
40 #define EXTRAPOS options_get_int("extrapos")
42 #define NAMELEN (EMAILPOS-NAMEPOS -1)
43 #define EMAILLEN (EXTRAPOS-EMAILPOS -1)
44 #define EXTRALEN (COLS-EXTRAPOS)
46 #define LAST_LIST_ITEM ( first_list_item + LIST_LINES - 1 )