1 /** \file hotlist.h
2 * \brief Header: directory hotlist
3 */
4
5 #ifndef MC__HOTLIST_H
6 #define MC__HOTLIST_H
7
8 /*** typedefs(not structures) and defined constants **********************************************/
9
10 #include "panel.h"
11
12 /*** enums ***************************************************************************************/
13
14 typedef enum
15 {
16 LIST_VFSLIST = 0x01,
17 LIST_HOTLIST = 0x02,
18 LIST_MOVELIST = 0x04
19 } hotlist_t;
20
21 /*** structures declarations (and typedefs of structures)*****************************************/
22
23 /*** global variables defined in .c file *********************************************************/
24
25 /*** declarations of public functions ************************************************************/
26
27 void add2hotlist_cmd (WPanel *panel);
28 char *hotlist_show (hotlist_t list_type, WPanel *panel);
29 gboolean save_hotlist (void);
30 void done_hotlist (void);
31
32 /*** inline functions ****************************************************************************/
33 #endif