Ticket #4536: skins: add root variant of julia256 skin.
[midnight-commander.git] / src / filemanager / hotlist.h
blob94bc305542989fc1f28c39ecabc1007e2fbb2304
1 /** \file hotlist.h
2 * \brief Header: directory hotlist
3 */
5 #ifndef MC__HOTLIST_H
6 #define MC__HOTLIST_H
8 /*** typedefs(not structures) and defined constants **********************************************/
10 #include "panel.h"
12 /*** enums ***************************************************************************************/
14 typedef enum
16 LIST_VFSLIST = 0x01,
17 LIST_HOTLIST = 0x02,
18 LIST_MOVELIST = 0x04
19 } hotlist_t;
21 /*** structures declarations (and typedefs of structures)*****************************************/
23 /*** global variables defined in .c file *********************************************************/
25 /*** declarations of public functions ************************************************************/
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);
32 /*** inline functions ****************************************************************************/
33 #endif /* MC__HOTLIST_H */